Add more routes for media upload

This commit is contained in:
Jesse Wierzbinski 2023-11-21 17:00:14 -10:00
parent 4afd939b18
commit 930b84826b
No known key found for this signature in database
5 changed files with 138 additions and 6 deletions

View file

@ -8,5 +8,6 @@ export interface APIRouteMeta {
auth: {
required: boolean;
requiredOnMethods?: ("GET" | "POST" | "PUT" | "DELETE" | "PATCH")[];
oauthPermissions?: string[];
};
}