diff --git a/AUTHORS b/AUTHORS index e1a6a2c23..e438973a9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -29,3 +29,4 @@ Authors of OpenSlides in chronological order of first contribution: Raimund Renkert Jochen Saalfeld Fadi Abbud + Gabriel Meyer diff --git a/client/src/app/site/site.component.html b/client/src/app/site/site.component.html index 2871f6459..b8b6f9dc5 100644 --- a/client/src/app/site/site.component.html +++ b/client/src/app/site/site.component.html @@ -29,11 +29,20 @@ {{ getLangName(this.translate.currentLang) }}
- + person Edit profile - + vpn_key Change password diff --git a/client/src/app/site/site.component.ts b/client/src/app/site/site.component.ts index 566f72373..1273c5427 100644 --- a/client/src/app/site/site.component.ts +++ b/client/src/app/site/site.component.ts @@ -150,20 +150,6 @@ export class SiteComponent extends BaseComponent implements OnInit { } } - // TODO: Implement this - public editProfile(): void { - if (this.operator.user) { - this.router.navigate([`./users/${this.operator.user.id}`]); - } - } - - /** - * Redirects to the change password component - */ - public changePassword(): void { - this.router.navigate([`./users/password`]); - } - /** * Function to log out the current user */