First commit

This commit is contained in:
ebassi -
commit e3597abe8e
35 changed files with 2401 additions and 0 deletions

12
config/routing.yml Executable file
View file

@ -0,0 +1,12 @@
pedodev_linkprotection_protected_page_route:
path: /{protected_prefix}/link/{link}
defaults: { _controller: pedodev.linkprotection.protected_page_controller:handle, link: '' }
requirements:
protected_prefix: '\w+'
link: '[\w\-]+\.{0,2}'
pedodev_linkprotection_protected_captcha_route:
path: /{protected_prefix}/captcha
defaults: { _controller: pedodev.linkprotection.protected_page_captcha_controller:handle, }
requirements:
protected_prefix: '\w+'