frontend: Add setEdition method to AppDataService for updating application edition

This commit is contained in:
Carlos Santos 2025-10-20 18:26:00 +02:00
parent 15c35f87cb
commit e1c7dec9b9

View File

@ -36,6 +36,10 @@ export class AppDataService {
return this.appData.mode === ApplicationMode.STANDALONE; return this.appData.mode === ApplicationMode.STANDALONE;
} }
setEdition(edition: Edition): void {
this.appData.edition = edition;
}
getEdition(): Edition { getEdition(): Edition {
return this.appData.edition; return this.appData.edition;
} }