Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console / templates / module / routing-controller.yml.twig
1 {% if class_name is defined %}
2
3 {% for route in routes %}
4 {% if learning is defined and learning %}
5 {{ yaml_comment('application.messages.learning.route') }}
6 {% endif %}
7 {{ route.name }}:
8   path: '{{ route.path }}'
9   defaults:
10     _controller: '\Drupal\{{ module }}\Controller\{{ class_name }}::{{ route.method }}'
11     _title: '{{route.title}}'
12   requirements:
13     _permission: 'access content'
14 {% endfor %}
15 {% endif %}