Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
2 additions and
4 deletions
-
README.md
-
apps/client/src/app/app.component.html
-
apps/client/src/app/pages/register/register-page.component.ts
|
|
@ -274,6 +274,6 @@ If you like to support this project, get [**Ghostfolio Premium**](https://ghostf |
|
|
|
|
|
|
|
## License |
|
|
|
|
|
|
|
© 2023 [Ghostfolio](https://ghostfol.io) |
|
|
|
© 2021 - 2023 [Ghostfolio](https://ghostfol.io) |
|
|
|
|
|
|
|
Licensed under the [AGPLv3 License](https://www.gnu.org/licenses/agpl-3.0.html). |
|
|
|
|
|
@ -49,7 +49,7 @@ |
|
|
|
> |
|
|
|
<div class="container text-center"> |
|
|
|
<div> |
|
|
|
© {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a> |
|
|
|
© 2021 - {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a> |
|
|
|
{{ version }} |
|
|
|
</div> |
|
|
|
<div class="py-2 text-muted"> |
|
|
|
|
|
@ -8,7 +8,6 @@ import { UserService } from '@ghostfolio/client/services/user/user.service'; |
|
|
|
import { InfoItem, LineChartItem } from '@ghostfolio/common/interfaces'; |
|
|
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions'; |
|
|
|
import { Role } from '@prisma/client'; |
|
|
|
import { format } from 'date-fns'; |
|
|
|
import { DeviceDetectorService } from 'ngx-device-detector'; |
|
|
|
import { Subject } from 'rxjs'; |
|
|
|
import { takeUntil } from 'rxjs/operators'; |
|
|
@ -22,7 +21,6 @@ import { ShowAccessTokenDialog } from './show-access-token-dialog/show-access-to |
|
|
|
templateUrl: './register-page.html' |
|
|
|
}) |
|
|
|
export class RegisterPageComponent implements OnDestroy, OnInit { |
|
|
|
public currentYear = format(new Date(), 'yyyy'); |
|
|
|
public demoAuthToken: string; |
|
|
|
public deviceType: string; |
|
|
|
public hasPermissionForSocialLogin: boolean; |
|
|
|