From f96c1d204400028c55a2120d0569180379c0649f Mon Sep 17 00:00:00 2001 From: Michael Auerswald Date: Wed, 15 Nov 2023 16:54:33 +0100 Subject: [PATCH] fix(core): Correct permissions for getstatus (#7724) --- packages/cli/src/controllers/orchestration.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/controllers/orchestration.controller.ts b/packages/cli/src/controllers/orchestration.controller.ts index cbe9f285d7..39e4192332 100644 --- a/packages/cli/src/controllers/orchestration.controller.ts +++ b/packages/cli/src/controllers/orchestration.controller.ts @@ -4,7 +4,7 @@ import { Service } from 'typedi'; import { SingleMainInstancePublisher } from '@/services/orchestration/main/SingleMainInstance.publisher'; import { License } from '../License'; -@Authorized(['global', 'owner']) +@Authorized('any') @RestController('/orchestration') @Service() export class OrchestrationController {