Last active
February 23, 2017 22:33
-
-
Save dmfenton/a8eacc31afeb460cbc919e7e2095f4ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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