feat(apiv2): delete endpoints

This commit is contained in:
spiral
2021-10-12 06:41:38 -04:00
parent c164fad2ac
commit 0aefafb62d
4 changed files with 41 additions and 22 deletions

View File

@@ -52,6 +52,8 @@ namespace PluralKit.API
public static PKError UnauthorizedGroupMemberList = new(403, 30003, "Unauthorized to view group member list");
public static PKError UnauthorizedCurrentFronters = new(403, 30004, "Unauthorized to view current fronters.");
public static PKError UnauthorizedFrontHistory = new(403, 30004, "Unauthorized to view front history.");
public static PKError NotOwnMemberError = new(403, 40001, "Target member is not part of your system.");
public static PKError NotOwnGroupError = new(403, 40002, "Target group is not part of your system.");
public static PKError Unimplemented = new(501, 50001, "Unimplemented");
}
}