Skip to content

Commit

Permalink
[DashboardBundle] Set correct template path for widget action (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
acrobat committed Dec 13, 2018
1 parent 6890ba4 commit 5bcbcdf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Kunstmaan/AdminBundle/Controller/DefaultController.php
Expand Up @@ -21,7 +21,7 @@ class DefaultController extends Controller
* The index action will render the main screen the users see when they log in in to the admin
*
* @Route("/", name="KunstmaanAdminBundle_homepage")
* @Template()
* @Template("@KunstmaanAdmin/Default/index.html.twig")
*
* @return array
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Kunstmaan/AdminBundle/Controller/ModulesController.php
Expand Up @@ -13,7 +13,7 @@ class ModulesController extends Controller
{
/**
* @Route("/", name="KunstmaanAdminBundle_modules")
* @Template()
* @Template("@KunstmaanAdmin/Modules/index.html.twig")
*
* @return array
*/
Expand Down
Expand Up @@ -15,7 +15,7 @@ class SettingsController extends BaseSettingsController
* Index page for the settings
*
* @Route("/", name="KunstmaanAdminBundle_settings")
* @Template()
* @Template("@KunstmaanAdmin/Settings/index.html.twig")
*
* @throws AccessDeniedException
*
Expand Down
Expand Up @@ -16,7 +16,7 @@ class GoogleAnalyticsController extends Controller
* The index action will render the main screen the users see when they log in in to the admin
*
* @Route("/", name="KunstmaanDashboardBundle_widget_googleanalytics")
* @Template()
* @Template("@KunstmaanDashboard/GoogleAnalytics/widget.html.twig")
*
* @param \Symfony\Component\HttpFoundation\Request $request
*
Expand Down
Expand Up @@ -72,7 +72,7 @@ public function deleteAction(Request $request, $id)

/**
* @Route("/autocomplete.{_format}", name="kunstmaantaggingbundle_admin_tag_autocomplete", defaults={"_format" = "json"})
* @Template()
* @Template("@KunstmaanTagging/Tags/autocomplete.json.twig")
*
* @param \Symfony\Component\HttpFoundation\Request $request
*
Expand Down

0 comments on commit 5bcbcdf

Please sign in to comment.