This is a supporter for getblackboard.com; mainly for static API services. Let's see if this evolves into something else or not.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
824 B

/**
* ObjReferenceController
*
* @description :: Server-side logic for managing objreferences
* @help :: See http://sailsjs.org/#!/documentation/concepts/Controllers
*/
module.exports = {
search: function(req, res) {
var word = req.param('query'),
query = ObjReference.find();
if (word != undefined)
query = ObjReference.find({
where: {
or: [
{team: word},
{type: word},
{bbApi: word},
{id: word},
]
},
sort: {
date: 1
}
});
page = ((req.query.page != undefined) ? +req.query.page : 1);
query.paginate({page: page, limit: 10}).exec(function(err, items) {
if (err) {
res.send(400);
} else {
res.send(items);
}
});
}
};