diff --git a/lib/Controller/NavigationController.php b/lib/Controller/NavigationController.php index bf8f1af7..76b84a47 100644 --- a/lib/Controller/NavigationController.php +++ b/lib/Controller/NavigationController.php @@ -109,11 +109,13 @@ class NavigationController extends Controller { $data = [ 'serverData' => [ 'public' => false, + 'firstrun' => false, ] ]; try { $this->actorService->createActor($this->userId, $this->userId); + $data['serverData']['firstrun'] = true; } catch (AccountAlreadyExistsException $e) { // we do nothing } diff --git a/src/App.vue b/src/App.vue index 6120e2ee..b3351435 100644 --- a/src/App.vue +++ b/src/App.vue @@ -72,7 +72,7 @@ export default { id: 'social-account', classes: [], icon: 'icon-user', - text: t('social', 'Your account'), + text: t('social', 'Profile'), router: { name: 'profile', params: { account: this.currentUser.uid } diff --git a/src/components/ProfileInfo.vue b/src/components/ProfileInfo.vue index 9e82656e..cbb2192e 100644 --- a/src/components/ProfileInfo.vue +++ b/src/components/ProfileInfo.vue @@ -28,7 +28,7 @@

{{ accountInfo.cloudId }}

Website: {{ accountInfo.website.value }}

- +