roles endpoints clients

This commit is contained in:
2024-10-06 23:16:53 +02:00
Unverified
parent eb8d87dfe6
commit dcc86b4e9e
11 changed files with 261 additions and 14 deletions

View File

@@ -18,4 +18,8 @@ public class Media
public string GetMediaPhotos { get; set; }
public string GetMediaPhotoRandomBackground { get; set; }
public string PostMediaPhoto { get; set; }
public string GetMediaAllActorRoles { get; set; }
public string PostMediaActorRole { get; set; }
public string GetMediaAllCreatorRoles { get; set; }
public string PostMediaCreatorRole { get; set; }
}

View File

@@ -12,4 +12,8 @@ public class Persons
public string GetPersonPhoto { get; set; }
public string PutPersonPhoto { get; set; }
public string DeletePersonPhoto { get; set; }
public string GetPersonAllActorRoles { get; set; }
public string PostPersonActorRole { get; set; }
public string GetPersonAllCreatorRoles { get; set; }
public string PostPersonCreatorRole { get; set; }
}

View File

@@ -3,10 +3,16 @@ namespace WatchIt.Website.Services.Utility.Configuration.Model;
public class Roles
{
public string Base { get; set; }
public string GetActorRole { get; set; }
public string PutActorRole { get; set; }
public string DeleteActorRole { get; set; }
public string GetAllActorRoleTypes { get; set; }
public string GetActorRoleType { get; set; }
public string PostActorRoleType { get; set; }
public string DeleteActorRoleType { get; set; }
public string GetCreatorRole { get; set; }
public string PutCreatorRole { get; set; }
public string DeleteCreatorRole { get; set; }
public string GetAllCreatorRoleTypes { get; set; }
public string GetCreatorRoleType { get; set; }
public string PostCreatorRoleType { get; set; }