fix: use double quotes for ConfigService key (prettier)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
2026-03-10 22:50:58 -05:00
parent 639abfaefa
commit 5f0a7c847c

View File

@@ -14,7 +14,7 @@ export class GatekeeperService {
private readonly logger = new Logger(GatekeeperService.name); private readonly logger = new Logger(GatekeeperService.name);
private get giteaApiBaseUrl(): string { private get giteaApiBaseUrl(): string {
return `${this.configService.getOrThrow<string>('GITEA_URL')}/api/v1`; return `${this.configService.getOrThrow<string>("GITEA_URL")}/api/v1`;
} }
constructor( constructor(