Add API for FileServiceRequests (#8)
* add paths to api * add queue request dto * update api for pathing * update pathing again * update api Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com> Co-authored-by: Stanley Dimant <stanley.dimant@varian.com>
This commit is contained in:
12
MareSynchronosAPI/MareAuth.cs
Normal file
12
MareSynchronosAPI/MareAuth.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace MareSynchronos.API
|
||||
{
|
||||
public class MareAuth
|
||||
{
|
||||
|
||||
public const string Auth = "/auth";
|
||||
public const string Auth_CreateIdent = "createWithIdent";
|
||||
public static Uri AuthFullPath(Uri baseUri) => new Uri(baseUri, Auth + "/" + Auth_CreateIdent);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user