refactor(api): 🔥 Remove useless allowedMethods from route meta info

This commit is contained in:
Jesse Wierzbinski 2024-09-27 13:08:47 +02:00
parent b040c88445
commit 2254c3d39c
No known key found for this signature in database
95 changed files with 7 additions and 99 deletions

View file

@ -20,7 +20,6 @@ import type { User as DatabaseUser } from "~/packages/database-interface/user";
export type HttpVerb = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "OPTIONS";
export interface ApiRouteMetadata {
allowedMethods: HttpVerb[];
ratelimits: {
max: number;
duration: number;