mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
Added tags to clients page
This commit is contained in:
@ -2,7 +2,7 @@ module.exports = {
|
||||
development: {
|
||||
root: require('path').normalize(__dirname + '/..'),
|
||||
debug: true,
|
||||
database: 'mongodb://wootbox.wootroot.me/biomed_devel2',
|
||||
database: 'mongodb://wootbox.wootroot.me/biomed_prod',
|
||||
auth: {
|
||||
clientId: '223145213165.apps.googleusercontent.com',
|
||||
clientSecret: '8MRNar9E_pRTOGTQonPzYOW_',
|
||||
|
@ -25,6 +25,7 @@ module.exports = function(app, auth, piler, calendar, config) {
|
||||
app.get('/api/clients/frequencies', clients.frequencies);
|
||||
app.get('/api/clients/:client_id', clients.get);
|
||||
app.get('/api/clients/:client_id/workorders', clients.workorders);
|
||||
app.get('/api/clients/:client_id/tags', clients.tags);
|
||||
app.post('/api/clients', clients.create);
|
||||
app.post('/api/clients/:client_id', clients.update);
|
||||
app.del('/api/clients/:client_id', clients.destroy);
|
||||
|
Reference in New Issue
Block a user