1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2024-10-26 08:55:23 +03:00

Updated calendarDenied test rest def.

This commit is contained in:
Adolfo Gómez García 2024-09-28 17:27:46 +02:00
parent 706107e66c
commit f7f651d88d
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ export class ServiceComponent implements OnInit {
if (this.service.maintenance) {
this.notifyNotLaunching(django.gettext('Service is in maintenance and cannot be launched'));
} else if (this.service.not_accesible) {
const calendarDeniedText = this.service.custom_calendar_text || this.api.config.messages.calendarDenied;
const calendarDeniedText = this.service.custom_calendar_text || this.api.config.messages.calendar_denied;
this.notifyNotLaunching(
'<p align="center">' +

View File

@ -37,7 +37,7 @@ export interface UDSUrls {
}
export interface UDSMessages {
readonly calendarDenied: string;
readonly calendar_denied: string;
}
export interface MFAInfo {