Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJakob <jakob.roehrl@web.de>2019-11-28 21:19:09 +0300
committerJakob <jakob.roehrl@web.de>2019-11-28 21:19:09 +0300
commitc73e919829fd43d0f133609a8457790d447baa13 (patch)
tree65e4abb55ffe34762fb1d8d041b1fd9254d88b22 /lib
parent893b8974a091af019681cd7669133287edac5655 (diff)
1st try
Signed-off-by: Jakob <jakob.roehrl@web.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/PageController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 593f7c1b..e4fb631f 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -68,6 +68,7 @@ class PageController extends Controller {
$this->eventDispatcher->dispatch(LoadViewer::class, new LoadViewer());
$this->initialStateService->provideInitialState($this->appName, 'mimes', Application::MIMES);
+ $this->initialStateService->provideInitialState($this->appName, 'maps', Application::MAPS);
Util::addScript($this->appName, 'photos');
Util::addStyle($this->appName, 'icons');
@@ -75,5 +76,4 @@ class PageController extends Controller {
$response = new TemplateResponse($this->appName, 'main');
return $response;
}
-
}