Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console / templates / module / permission.yml.twig
1 {% if permissions|length %}
2
3 {% for permission in permissions %}
4 {{ permission.permission }}:
5   title: '{{ permission.title }}'
6   description: '{{ permission.description }}'
7 {% if  permission.restrict_access != 'none' %}
8   restrict access: {{ permission.restrict_access }}
9 {% endif %}
10 {% endfor %}
11 {% endif %}