Browse Source

Merge branch 'develop' of https://gitea.laclic.fr/Laclic/SovBundle into develop

feature/ticket
Fab 3 years ago
parent
commit
dd5ae56738
3 changed files with 15 additions and 9 deletions
  1. +10
    -6
      Definition/RolesDefinition.php
  2. +2
    -2
      Resources/config/routes.yaml
  3. +3
    -1
      Resources/views/adminlte/layout.html.twig

+ 10
- 6
Definition/RolesDefinition.php View File



class RolesDefinition implements RolesDefinitionInterface class RolesDefinition implements RolesDefinitionInterface
{ {
const ROLE_USER = 'ROLE_USER' ;
const ROLE_ADMIN = 'ROLE_ADMIN' ;
const ROLE_SUPER_ADMIN = 'ROLE_SUPER_ADMIN' ;

protected $roles = array( protected $roles = array(
'ROLE_USER' => [
self::ROLE_USER => [
'label' => 'Utilisateurs', 'label' => 'Utilisateurs',
'role' => 'ROLE_USER',
'role' => self::ROLE_USER,
], ],
'ROLE_ADMIN' => [
self::ROLE_ADMIN => [
'label' => 'Administrateurs', 'label' => 'Administrateurs',
'role' => 'ROLE_ADMIN',
'role' => self::ROLE_ADMIN,
], ],
'ROLE_SUPER_ADMIN' => [
self::ROLE_SUPER_ADMIN => [
'label' => 'SuperAdmin', 'label' => 'SuperAdmin',
'role' => 'ROLE_SUPER_ADMIN',
'role' => self::ROLE_SUPER_ADMIN,
], ],
); );



+ 2
- 2
Resources/config/routes.yaml View File



sov_admin_account_profile: sov_admin_account_profile:
path: /admin/account/profile path: /admin/account/profile
controller: Lc\SovBundle\Controller\User\UserController::profile
controller: Lc\SovBundle\Controller\User\AccountAdminController::profile


sov_admin_account_password: sov_admin_account_password:
path: /admin/account/password path: /admin/account/password
controller: Lc\SovBundle\Controller\User\UserController::changePassword
controller: Lc\SovBundle\Controller\User\AccountAdminController::changePassword



+ 3
- 1
Resources/views/adminlte/layout.html.twig View File

<meta name="generator" content="EasyAdmin"/> <meta name="generator" content="EasyAdmin"/>
{% endblock head_metas %} {% endblock head_metas %}


<title>{% block page_title %}{{ block('content_title')|striptags|raw }}{% endblock %}</title>
<title>{% block page_title %}Administration | {{ block('content_title')|striptags|raw }}{% endblock %}</title>


{# {% block head_stylesheets %} {# {% block head_stylesheets %}
<link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}"> <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}">
{% endif %} {% endif %}
{% endif %} {% endif %}


{% block append_body %}{% endblock %}

</body> </body>
{% endblock body %} {% endblock body %}
</html> </html>

Loading…
Cancel
Save