Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / square_project / index.js
1 'use strict';
2
3 var express = require('express');
4 var controller = require('./square_project.controller');
5 var auth = require('../../auth/auth.service');
6
7 var router = express.Router();
8
9 router.get('/', auth.isAuthenticated(), controller.index);
10 router.get('/:id', auth.isAuthenticated(), controller.show);
11 router.get('/:id/download', controller.download);
12 router.post('/', auth.isAuthenticated(), controller.create);
13 router.post('/validate', auth.isAuthenticated(), controller.projectValidation);
14 router.put('/:id', auth.isAuthenticated(), controller.update);
15 router.patch('/:id', auth.isAuthenticated(), controller.update);
16 router.delete('/', auth.isAuthenticated(), controller.bulkDestroy);
17 router.delete('/:id', auth.isAuthenticated(), controller.destroy);
18
19 module.exports = router;