Skip to content

Commit

Permalink
feat(CustomLogo): Add field in for custom logo in applicationmetadata (
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelrss authored Aug 24, 2023
1 parent 3d35d03 commit 9d441d6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Altinn.App.Core/Models/ApplicationMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,11 @@ public ApplicationMetadata(string id)
[System.Text.Json.Serialization.JsonIgnore]
[Newtonsoft.Json.JsonIgnore]
public AppIdentifier AppIdentifier { get; private set; }

/// <summary>
/// A flag to specify that the form should use a custom logo
/// </summary>
[JsonProperty(PropertyName = "useCustomLogo")]
public bool UseCustomLogo { get; set; }
}
}

0 comments on commit 9d441d6

Please sign in to comment.