Add license (#8)

* Add license

* Remove unnecessary style

* Add license to package.json

* Update url

* Adapt offering to new license (#13)

* Adapt offering to new license

* Update changelog

* Add license to about page

* Adapt offering to new license
This commit is contained in:
Thomas
2021-04-18 19:01:31 +02:00
committed by GitHub
parent 5e0d207d84
commit fed10c7110
15 changed files with 728 additions and 51 deletions

View File

@@ -10,7 +10,7 @@ export interface User {
settings: UserSettings;
subscription: {
expiresAt: Date;
type: 'Diamond';
type: 'Trial';
};
}

View File

@@ -46,7 +46,7 @@ export class UserService {
},
subscription: {
expiresAt: resetHours(add(new Date(), { days: 7 })),
type: 'Diamond'
type: 'Trial'
}
};
}