sipp11
9 years ago
13 changed files with 101 additions and 7 deletions
@ -0,0 +1,11 @@
|
||||
/** |
||||
* ObjReferenceController |
||||
* |
||||
* @description :: Server-side logic for managing objreferences |
||||
* @help :: See http://sailsjs.org/#!/documentation/concepts/Controllers
|
||||
*/ |
||||
|
||||
module.exports = { |
||||
|
||||
}; |
||||
|
@ -0,0 +1,11 @@
|
||||
/** |
||||
* ObjRevisionController |
||||
* |
||||
* @description :: Server-side logic for managing objrevisions |
||||
* @help :: See http://sailsjs.org/#!/documentation/concepts/Controllers
|
||||
*/ |
||||
|
||||
module.exports = { |
||||
|
||||
}; |
||||
|
@ -0,0 +1,11 @@
|
||||
/** |
||||
* UserActivityController |
||||
* |
||||
* @description :: Server-side logic for managing useractivities |
||||
* @help :: See http://sailsjs.org/#!/documentation/concepts/Controllers
|
||||
*/ |
||||
|
||||
module.exports = { |
||||
|
||||
}; |
||||
|
@ -0,0 +1,14 @@
|
||||
/** |
||||
* ObjReference.js |
||||
* |
||||
* @description :: TODO: You might write a short summary of how this model works and what it represents here. |
||||
* @docs :: http://sailsjs.org/#!documentation/models
|
||||
*/ |
||||
|
||||
module.exports = { |
||||
connection: 'jarvisBlackboard', |
||||
attributes: { |
||||
|
||||
} |
||||
}; |
||||
|
@ -0,0 +1,14 @@
|
||||
/** |
||||
* ObjRevision.js |
||||
* |
||||
* @description :: TODO: You might write a short summary of how this model works and what it represents here. |
||||
* @docs :: http://sailsjs.org/#!documentation/models
|
||||
*/ |
||||
|
||||
module.exports = { |
||||
connection: 'jarvisBlackboard', |
||||
attributes: { |
||||
|
||||
} |
||||
}; |
||||
|
@ -0,0 +1,14 @@
|
||||
/** |
||||
* UserActivity.js |
||||
* |
||||
* @description :: TODO: You might write a short summary of how this model works and what it represents here. |
||||
* @docs :: http://sailsjs.org/#!documentation/models
|
||||
*/ |
||||
|
||||
module.exports = { |
||||
connection: 'jarvisBlackboard', |
||||
attributes: { |
||||
|
||||
} |
||||
}; |
||||
|
@ -1,12 +1,20 @@
|
||||
module.exports.connections = { |
||||
|
||||
njMongo: { |
||||
nj2mongo: { |
||||
adapter: 'sails-mongo', |
||||
host: 'nj2', |
||||
port: 27017, |
||||
// user: 'username',
|
||||
// password: 'password',
|
||||
database: 'bbSailer', |
||||
} |
||||
}, |
||||
jarvisBlackboard: { |
||||
adapter: 'sails-mongo', |
||||
host: 'nj2', |
||||
port: 27017, |
||||
// user: 'username',
|
||||
// password: 'password',
|
||||
database: 'jarvis-bb', |
||||
}, |
||||
|
||||
}; |
||||
|
Loading…
Reference in new issue