refactor: remove authentication guard from label-print-agent controller
Build and Push Multi-Platform Images / build-and-push (push) Successful in 27s

This commit is contained in:
2026-05-09 10:21:22 +02:00
parent 86d3c062d6
commit 48d4ff1ab3
@@ -13,18 +13,15 @@ import {
Res,
Sse,
StreamableFile,
UseGuards,
} from '@nestjs/common';
import type { Response } from 'express';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { JwtOrApiKeyGuard } from '../auth/jwt-or-apikey.guard';
import { RequirePermissions } from '../auth/permissions.decorator';
import { Permission } from '../auth/permissions.enum';
import { LabelPrintAgentService } from './label-print-agent.service';
@Controller('api/label-print-agent')
@UseGuards(JwtOrApiKeyGuard)
export class LabelPrintAgentController {
constructor(private readonly service: LabelPrintAgentService) {}