-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed backend database to ksummarized. Changed the db context to application.
- Loading branch information
Showing
22 changed files
with
77 additions
and
1,175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
namespace api.Data; | ||
using System.Diagnostics.CodeAnalysis; | ||
|
||
namespace api.Data; | ||
public class KeycloakJwtOptions | ||
{ | ||
public string? Issuer { get; set; } | ||
public string? Audience { get; set; } | ||
public string? Secret { get; set; } | ||
public required string Issuer { get; set; } | ||
public required string Audience { get; set; } | ||
public required string Secret { get; set; } | ||
|
||
[SetsRequiredMembers] | ||
public KeycloakJwtOptions(string issuer, string audience, string secret) | ||
{ | ||
Issuer = issuer; | ||
Audience = audience; | ||
Secret = secret; | ||
} | ||
} |
276 changes: 0 additions & 276 deletions
276
backend/src/api/Migrations/20220112115812_CreatedUserTables.Designer.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.