chore: fmt

This commit is contained in:
Michael Abebe
2026-05-12 16:50:18 +03:00
parent 4540d35215
commit 1c5ee19388
181 changed files with 1492 additions and 1100 deletions

View File

@@ -1,4 +1,4 @@
import { createParamDecorator, ExecutionContext } from '@nestjs/common';
import { createParamDecorator, ExecutionContext } from "@nestjs/common";
// TODO: integrate @edr/auth — this decorator currently returns whatever was
// attached to request.user by the (not-yet-wired) auth middleware. Once the

View File

@@ -1,6 +1,6 @@
import { SetMetadata } from '@nestjs/common';
import { SetMetadata } from "@nestjs/common";
export const IS_PUBLIC_KEY = 'isPublic';
export const IS_PUBLIC_KEY = "isPublic";
// TODO: integrate @edr/auth — pair with the JwtAuthGuard from the auth package
// so it skips authentication for routes marked @Public(). Until then, this is

View File

@@ -1,6 +1,6 @@
import { SetMetadata } from '@nestjs/common';
import { SetMetadata } from "@nestjs/common";
export const ROLES_KEY = 'roles';
export const ROLES_KEY = "roles";
// TODO: integrate @edr/auth — pair this metadata with a RolesGuard from the
// auth package. Until then, this decorator only sets metadata and has no