* add jwt expiry * bump api version * start rework permissions * ok so in theory this compiles * update api * update api * update api * update api once more * oh apiii I hate submodules * blabla * we only live to suffer * stop reading my commit messages * nothing to see here move along * update nuget * some rework --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
11 lines
430 B
C#
11 lines
430 B
C#
namespace MareSynchronos.API.Routes;
|
|
|
|
public class MareAuth
|
|
{
|
|
|
|
public const string Auth = "/auth";
|
|
public const string Auth_CreateIdent = "createWithIdent";
|
|
public const string Auth_RenewToken = "renewToken";
|
|
public static Uri AuthFullPath(Uri baseUri) => new Uri(baseUri, Auth + "/" + Auth_CreateIdent);
|
|
public static Uri RenewTokenFullPath(Uri baseUri) => new Uri(baseUri, Auth + "/" + Auth_RenewToken);
|
|
} |