mirror of
https://github.com/directus/directus.git
synced 2026-02-10 18:14:57 -05:00
[WIP] Add processAST to PermissionsService, rely on AST instead of Query in services
This commit is contained in:
7
src/types/express.d.ts
vendored
7
src/types/express.d.ts
vendored
@@ -9,9 +9,10 @@ export {};
|
||||
declare global {
|
||||
namespace Express {
|
||||
export interface Request {
|
||||
token?: string;
|
||||
user?: string;
|
||||
role?: string;
|
||||
token: string;
|
||||
user: string;
|
||||
role: string | null;
|
||||
admin: boolean;
|
||||
collection?: string;
|
||||
sanitizedQuery?: Record<string, any>;
|
||||
single?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user