d8-podcast-ror/podcast_ror.routing.yml

28 lines
871 B
YAML
Raw Normal View History

2018-09-14 16:43:38 +02:00
podcast_ror.all:
path: '/podcast/all.xml'
defaults:
_controller: '\Drupal\podcast_ror\Controller\PodcastRorController::podcastAll'
_title: 'Global podcast'
requirements:
_access: 'TRUE'
options:
2022-11-30 17:49:05 +01:00
no_cache: 'FALSE'
2020-12-07 20:15:10 +01:00
podcast_ror.bytype:
path: '/podcast/by-type/{contentType}/podcast.xml'
2019-11-26 09:53:18 +01:00
defaults:
2020-12-07 20:15:10 +01:00
_controller: '\Drupal\podcast_ror\Controller\PodcastRorController::podcastByType'
2019-11-26 09:53:18 +01:00
_title: 'Podcast for any type'
requirements:
_access: 'TRUE'
options:
2022-11-30 17:49:05 +01:00
no_cache: 'FALSE'
2020-12-07 20:15:10 +01:00
podcast_ror.bytrxid:
path: '/podcast/by-trx-id/{trxID}/podcast.xml'
defaults:
_controller: '\Drupal\podcast_ror\Controller\PodcastRorController::podcastByTrxID'
_title: 'Basic podcast for a single show'
requirements:
_access: 'TRUE'
options:
2022-11-30 17:49:05 +01:00
no_cache: 'FALSE'