mirror of
https://github.com/bitwarden/server
synced 2026-02-19 02:43:38 +00:00
15 lines
409 B
C#
15 lines
409 B
C#
namespace Bit.Seeder.Services;
|
|
|
|
/// <summary>
|
|
/// No-op implementation for dev/human-readable mode.
|
|
/// Returns original values unchanged. Registered as singleton since it has no state.
|
|
/// </summary>
|
|
public class NoOpManglerService : IManglerService
|
|
{
|
|
public string Mangle(string value) => value;
|
|
|
|
public Dictionary<string, string?> GetMangleMap() => new();
|
|
|
|
public bool IsEnabled => false;
|
|
}
|