podcast_ror.routing.yml 871 B

123456789101112131415161718192021222324252627
  1. podcast_ror.all:
  2. path: '/podcast/all.xml'
  3. defaults:
  4. _controller: '\Drupal\podcast_ror\Controller\PodcastRorController::podcastAll'
  5. _title: 'Global podcast'
  6. requirements:
  7. _access: 'TRUE'
  8. options:
  9. no_cache: 'FALSE'
  10. podcast_ror.bytype:
  11. path: '/podcast/by-type/{contentType}/podcast.xml'
  12. defaults:
  13. _controller: '\Drupal\podcast_ror\Controller\PodcastRorController::podcastByType'
  14. _title: 'Podcast for any type'
  15. requirements:
  16. _access: 'TRUE'
  17. options:
  18. no_cache: 'FALSE'
  19. podcast_ror.bytrxid:
  20. path: '/podcast/by-trx-id/{trxID}/podcast.xml'
  21. defaults:
  22. _controller: '\Drupal\podcast_ror\Controller\PodcastRorController::podcastByTrxID'
  23. _title: 'Basic podcast for a single show'
  24. requirements:
  25. _access: 'TRUE'
  26. options:
  27. no_cache: 'FALSE'