forked from MDCPS/DamageAssessment_Backend
Moving password and mode settings to configuration file for dadeschools offline Token service
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
namespace DamageAssesment.Api.UsersAccess.Models
|
||||
{
|
||||
public class FakeToken
|
||||
{
|
||||
public long nbf { get; set; }
|
||||
public long exp { get; set; }
|
||||
public string iss { get; set; } = "https://dev-graph.dadeschools.net";
|
||||
public string aud { get; set; } = "damage_assessment";
|
||||
public long iat { get; set; }
|
||||
public string at_hash { get; set; } = "Mw4sAsR_U3MfpqsffDhAqg";
|
||||
public string s_hash { get; set; } = "xADDtg6lVxAXUIFK8hm0Iw";
|
||||
public string sid { get; set; } = "A5EE26B57C27F28ADFEA8C021BB7C4F1";
|
||||
public string sub { get; set; }
|
||||
public long auth_time { get; set; }
|
||||
public string idp { get; set; } = "Dadeschools";
|
||||
public string[] amr { get; set; } = {"external"};
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user