Add RESERVED_SLUGS constant and consolidate exports

Introduce a RESERVED_SLUGS constant to standardize restricted slugs across the application. Created a `constants/index.ts` file to centralize and streamline exports for better maintainability.
This commit is contained in:
2025-03-12 09:36:44 +01:00
parent 71c114798b
commit 5ecc8441ae
2 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1 @@
export const RESERVED_SLUGS = ["new", "edit", "delete", "settings"];

View File

@@ -0,0 +1 @@
export * from "./common";