fix(core): Correct permissions for getstatus (#7724)

This commit is contained in:
Michael Auerswald 2023-11-15 16:54:33 +01:00 committed by GitHub
parent 18817651ec
commit f96c1d2044
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {