Skip to content

Instantly share code, notes, and snippets.

@teresko
Created November 21, 2017 22:38
Show Gist options
  • Save teresko/becd20a964e8aca75b52ec1685ee6f8a to your computer and use it in GitHub Desktop.
Save teresko/becd20a964e8aca75b52ec1685ee6f8a to your computer and use it in GitHub Desktop.
collection:
path: /{controller}{slash}
defaults:
action: collection
requirements:
id: "[1-9][0-9]*"
slash: "[/]{0,1}"
methods: [GET, POST]
resource:
path: /{controller}/{id}{slash}
defaults:
action: resource
requirements:
id: "[1-9][0-9]*"
slash: "[/]{0,1}"
methods: [GET, POST, DELETE, PATCH, PUT]
resource-action:
path: /{controller}/{id}/{action}{slash}
defaults:
action: resource
requirements:
id: "[1-9][0-9]*"
slash: "[/]{0,1}"
methods: [GET, POST, DELETE, PATCH, PUT]
concern-action:
path: /{controller}/{action}{slash}
defaults:
action: resource
requirements:
action: "[a-zA-Z-_]+"
slash: "[/]{0,1}"
methods: [GET, POST]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment