Correct bunch of issues (#36)
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m28s
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m28s
Reviewed-on: #36
This commit was merged in pull request #36.
This commit is contained in:
@@ -12,13 +12,15 @@ public class GlobalConstants
|
||||
public const string MEMBER_NORMALIZED = "MEMBRE";
|
||||
public const string ADMIN_MEMBER = $"{ADMINISTRATOR}, {MEMBER}";
|
||||
|
||||
public const int JWT_DURATION_HOUR = 12;
|
||||
public const int JWT_DURATION_HOUR = 168;
|
||||
|
||||
public const int NUMBER_PER_PAGE = 50;
|
||||
|
||||
public const string LS_AUTH_STORAGE_KEY = "authToken";
|
||||
public const string LS_EXPIRED_STORAGE_KEY = "expiredToken";
|
||||
|
||||
public const int API_PORT = 8000;
|
||||
public const string SUB_DOMAIN_NAME = "api-";
|
||||
|
||||
public const double DELAY_INPUT_MS = 500;
|
||||
}
|
||||
|
||||
7
src/GameIdeas/GameIdeas.Shared/Dto/MinMaxDto.cs
Normal file
7
src/GameIdeas/GameIdeas.Shared/Dto/MinMaxDto.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace GameIdeas.Shared.Dto;
|
||||
|
||||
public class MinMaxDto
|
||||
{
|
||||
public int? Min { get; set; }
|
||||
public int? Max { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user