Skip to content

Instantly share code, notes, and snippets.

@dmfenton
Last active February 23, 2017 22:33
Show Gist options
  • Save dmfenton/a8eacc31afeb460cbc919e7e2095f4ce to your computer and use it in GitHub Desktop.
Save dmfenton/a8eacc31afeb460cbc919e7e2095f4ce to your computer and use it in GitHub Desktop.
module.exports = [
{
path: '/agol/:id/datasets',
methods: ['get'],
handler: 'get'
},
{
path: '/agol/:id/datasets/:dataset.:format',
methods: ['get'],
handler: 'get'
},
{
path: '/agol/:id/datasets/:dataset',
methods: ['get'],
handler: 'get'
},
{
path: '/agol/:id/datasets/:dataset/:method',
methods: ['delete'],
handler: 'post'
},
{
path: '/agol/:id/datasets/:dataset/:method',
methods: ['delete'],
handler: 'delete'
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment