Custom Under Service Page

I try to add a custom page to my web application for the time that I am performing the service.

I try to check the specified page in my development environment, but always appear on the Symfony page. I already created a module with the correct action and template, and also configured those that are in the file settings.yml.

+3
source share
2 answers
+2
source

In your settings.yml application, set the following parameters:

all:
  .settings:
    module_disabled_module: security   # To be called when a user requests 
    module_disabled_action: disabled  # A module disabled in the module.yml

In the module.yml module, install this:

prod: 
  enabled:     false

prod, .

, . , Radu.

0

Source: https://habr.com/ru/post/1739050/


All Articles