diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-07-31 13:27:43 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-05 17:01:30 +0200 |
commit | ae6be0c110dcf150440e9d7af70162b8510736c7 (patch) | |
tree | 270c855372cdb3861e5f600519a602372066d212 /apps | |
parent | bd3d791ee032acd61ad7e62bb10a88a6335dcc39 (diff) | |
download | nextcloud-server-ae6be0c110dcf150440e9d7af70162b8510736c7.tar.gz nextcloud-server-ae6be0c110dcf150440e9d7af70162b8510736c7.zip |
Expose firstRun parameter to frontend
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dashboard/lib/Controller/DashboardController.php | 2 | ||||
-rw-r--r-- | apps/dashboard/src/App.vue | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/dashboard/lib/Controller/DashboardController.php b/apps/dashboard/lib/Controller/DashboardController.php index e796ae67ccd..2da01749744 100644 --- a/apps/dashboard/lib/Controller/DashboardController.php +++ b/apps/dashboard/lib/Controller/DashboardController.php @@ -89,6 +89,8 @@ class DashboardController extends Controller { }, $this->dashboardManager->getPanels()); $this->inititalStateService->provideInitialState('dashboard', 'panels', $panels); $this->inititalStateService->provideInitialState('dashboard', 'layout', $userLayout); + $this->inititalStateService->provideInitialState('dashboard', 'firstRun', $this->config->getUserValue($this->userId, 'dashboard', 'firstRun', '1') === '1'); + $this->config->setUserValue($this->userId, 'dashboard', 'firstRun', '0'); if (class_exists(LoadViewer::class)) { $this->eventDispatcher->dispatchTyped(new LoadViewer()); diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index a87ce343706..f0a47ea535d 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -62,6 +62,7 @@ import axios from '@nextcloud/axios' import { generateUrl } from '@nextcloud/router' const panels = loadState('dashboard', 'panels') +const firstRun = loadState('dashboard', 'firstRun') export default { name: 'App', @@ -74,6 +75,7 @@ export default { timer: new Date(), callbacks: {}, panels, + firstRun, displayName: getCurrentUser()?.displayName, uid: getCurrentUser()?.uid, layout: loadState('dashboard', 'layout').filter((panelId) => panels[panelId]), |