diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ceab2780..2bb8736c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Added + +- Added the license to the about page + +### Changed + +- Changed the about page for the new license + ## 0.85.0 - 16.04.2021 ### Changed diff --git a/angular.json b/angular.json index fced6626c..ee8651c24 100644 --- a/angular.json +++ b/angular.json @@ -99,6 +99,11 @@ "input": "", "output": "./" }, + { + "glob": "LICENSE", + "input": "", + "output": "./" + }, { "glob": "sitemap.xml", "input": "apps/client/src/assets", diff --git a/apps/api/src/app/user/interfaces/user.interface.ts b/apps/api/src/app/user/interfaces/user.interface.ts index 48f49c820..7c9b132e3 100644 --- a/apps/api/src/app/user/interfaces/user.interface.ts +++ b/apps/api/src/app/user/interfaces/user.interface.ts @@ -10,7 +10,7 @@ export interface User { settings: UserSettings; subscription: { expiresAt: Date; - type: 'Diamond'; + type: 'Trial'; }; } diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index 971b42007..f586bd4a3 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -46,7 +46,7 @@ export class UserService { }, subscription: { expiresAt: resetHours(add(new Date(), { days: 7 })), - type: 'Diamond' + type: 'Trial' } }; } diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index 2272723e7..2321a456d 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -26,7 +26,10 @@