Skip to content

Commit

Permalink
More user friendly names. (#1048)
Browse files Browse the repository at this point in the history
  • Loading branch information
defectiveAi authored Dec 12, 2024
1 parent c0738f4 commit 2d4ae21
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ private KnownAuditIdentityProvider(string friendlyName, string identityId)
IdentityId = new AuditIdentity(Guid.Parse(identityId));
}

public static KnownAuditIdentityProvider Migration { get; } = new("Migrated Data", "00000000-FFFF-FFFF-FFFF-000000000000");
public static KnownAuditIdentityProvider Migration { get; } = new("Datamigrering", "00000000-FFFF-FFFF-FFFF-000000000000");
public static KnownAuditIdentityProvider TestFramework { get; } = new("Test Framework", "AAAAAAAA-BBBB-CCCC-DDDD-000000000000");
public static KnownAuditIdentityProvider OrganizationBackgroundService { get; } = new("Organization Background Service", "00000000-1111-0000-0001-000000000000");
public static KnownAuditIdentityProvider ProcessManagerBackgroundJobs { get; } = new("Process Manager Background Jobs", "C861C5E2-8DDA-43E5-A5D0-B94834EE3FF6");
public static KnownAuditIdentityProvider OrganizationBackgroundService { get; } = new("Aktørsynkronisering", "00000000-1111-0000-0001-000000000000");
public static KnownAuditIdentityProvider ProcessManagerBackgroundJobs { get; } = new("Baggrundsjob", "C861C5E2-8DDA-43E5-A5D0-B94834EE3FF6");

public AuditIdentity IdentityId { get; }
public string FriendlyName { get; }
Expand Down

0 comments on commit 2d4ae21

Please sign in to comment.