Add rider files and use options
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 1m13s
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 1m13s
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
namespace GameIdeas.Shared.Exceptions;
|
||||
|
||||
public class UserInvalidException(string message) : Exception(message);
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace GameIdeas.Shared.Exceptions;
|
||||
|
||||
public class UserUnauthorizedException(string message) : Exception(message);
|
||||
12
src/GameIdeas/GameIdeas.Shared/Options/GameIdeasOptions.cs
Normal file
12
src/GameIdeas/GameIdeas.Shared/Options/GameIdeasOptions.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace GameIdeas.Shared.Options;
|
||||
|
||||
public class GameIdeasOptions
|
||||
{
|
||||
public string DbHost { get; set; } = string.Empty;
|
||||
public string DbUsername { get; set; } = string.Empty;
|
||||
public string DbPassword { get; set; } = string.Empty;
|
||||
public string DbDatabase { get; set; } = string.Empty;
|
||||
public string JwtKey { get; set; } = string.Empty;
|
||||
public string JwtIssuer { get; set; } = string.Empty;
|
||||
public string JwtAudience { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user