Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / company / index.js
1 'use strict';
2
3 var express = require('express');
4 var controller = require('./company.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.post('/', auth.isAuthenticated(), controller.create);
12 router.post('/validate', auth.isAuthenticated(), controller.companyValidation);
13 router.put('/:id', auth.isAuthenticated(), controller.update);
14 router.patch('/:id', auth.isAuthenticated(), controller.update);
15 router.delete('/', auth.isAuthenticated(), controller.bulkDestroy);
16 router.delete('/:id', auth.isAuthenticated(), controller.destroy);
17
18 module.exports = router;