mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
17669b7be0
Signature plugin fixes Add view decorator A large number of fixes
17 lines
377 B
JavaScript
17 lines
377 B
JavaScript
|
|
import ko from 'ko';
|
|
|
|
class LicenseAdminStore
|
|
{
|
|
constructor() {
|
|
this.licensing = ko.observable(false);
|
|
this.licensingProcess = ko.observable(false);
|
|
this.licenseValid = ko.observable(false);
|
|
this.licenseExpired = ko.observable(0);
|
|
this.licenseError = ko.observable('');
|
|
|
|
this.licenseTrigger = ko.observable(false);
|
|
}
|
|
}
|
|
|
|
module.exports = new LicenseAdminStore();
|