Add google and jwt authentication and authorization

This commit is contained in:
Oscar Morales
2025-07-15 13:52:09 -06:00
parent 3eb6bfc60f
commit aeab9548b8
15 changed files with 443 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
namespace Core.Thalos.BuildingBlocks.Common.Constants
{
public class Roles
{
/// <summary>
/// The role for Guest.
/// </summary>
public const string Guest = "684909c4826cd093b4f61c11";
/// <summary>
/// The role for Admin.
/// </summary>
public const string Admin = "68407642ec46a0e6fe1e8ec9";
}
}