template controller

This commit is contained in:
Mikhail Trubnikov
2023-09-15 16:32:46 +10:00
parent 4d56cbfd97
commit 06de8926e4
13 changed files with 324 additions and 30 deletions

View File

@@ -41,16 +41,31 @@
public const string getParam = "{id}";
}
public static class EsppData
{
public const string UploadTemplates = Base + "/espp-data/templates";
//public static class EsppData
//{
// public const string UploadTemplates = Base + "/espp-data/templates";
}
//}
public static class Test
{
public const string GetMyIp = Base + "/tests/my-ip";
}
public static class Template
{
public const string GetAll = Base + "/templates/";
public const string Get = Base + "/templates/" + getParam;
public const string SetOkStatus = Base + "/templates/" + getParam + "/status/ok";
public const string GetByStatusCode = Base + "/templates/status/{statusCode}";
public const string getParam = "{id}";
}
public static class StatusTemplate
{
public const string GetAll = Base + "/template-statuses/";
}