forked from chuva-inc/captcha
-
Notifications
You must be signed in to change notification settings - Fork 2
/
captcha.routing.yml
executable file
·72 lines (65 loc) · 2.03 KB
/
captcha.routing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
captcha_settings:
path: '/admin/config/people/captcha'
defaults:
_form: '\Drupal\captcha\Form\CaptchaSettingsForm'
_title: 'CAPTCHA settings'
requirements:
_permission: 'administer CAPTCHA settings'
captcha_examples:
path: '/admin/config/people/captcha/examples/{module}/{challenge}'
defaults:
_form: '\Drupal\captcha\Form\CaptchaExamplesForm'
module: ''
challenge: ''
requirements:
_permission: 'administer CAPTCHA settings'
captcha_point.list:
path: '/admin/config/people/captcha/captcha-points'
defaults:
_entity_list: 'captcha_point'
_title: 'CAPTCHA configuration'
requirements:
_permission: 'administer CAPTCHA settings'
captcha_point.add:
path: '/admin/config/people/captcha/captcha-points/add'
defaults:
_entity_form: 'captcha_point.add'
_title: 'Add CAPTCHA point'
requirements:
_permission: 'administer CAPTCHA settings'
entity.captcha_point.edit_form:
path: '/admin/config/people/captcha/captcha-points/{captcha_point}'
defaults:
_entity_form: 'captcha_point.edit'
_title: 'Edit CAPTCHA point'
options:
_admin_route: TRUE
requirements:
_permission: 'administer CAPTCHA settings'
entity.captcha_point.disable:
path: '/admin/config/people/captcha/captcha-points/{captcha_point}/disable'
defaults:
_entity_form: 'captcha_point.disable'
_title: 'Disable CAPTCHA point'
options:
_admin_route: TRUE
requirements:
_entity_access: 'captcha_point.update'
entity.captcha_point.enable:
path: '/admin/config/people/captcha/captcha-points/{captcha_point}/enable'
defaults:
_entity_form: 'captcha_point.enable'
_title: 'Enable CAPTCHA point'
options:
_admin_route: TRUE
requirements:
_entity_access: 'captcha_point.update'
entity.captcha_point.delete_form:
path: '/admin/config/people/captcha/captcha-points/{captcha_point}/delete'
defaults:
_entity_form: 'captcha_point.delete'
_title: 'Delete CAPTCHA point'
options:
_admin_route: TRUE
requirements:
_permission: 'administer CAPTCHA settings'