Correct bunch of issues (#36)
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:
2025-04-29 23:49:11 +02:00
parent d3d16493e6
commit f3c9e1d9da
37 changed files with 246 additions and 186 deletions

View File

@@ -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;
}

View File

@@ -0,0 +1,7 @@
namespace GameIdeas.Shared.Dto;
public class MinMaxDto
{
public int? Min { get; set; }
public int? Max { get; set; }
}