summaryrefslogtreecommitdiffstats
path: root/models/cardComments.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix lint warningsGhassen Rjab2018-02-271-4/+4
|
* Add REST API better error outputsoohwa2017-10-151-49/+81
|
* Send result before webhookAndrés Manelli2017-09-291-3/+3
|
* direct hook to bypass the checking step with API requestzago2017-07-191-8/+16
|
* add token authentication, only admin can use apihuneau romain2017-05-111-0/+4
|
* add rest api for checklist and card commenthuneau romain2017-05-101-0/+58
|
* [ENH] Add index on CardId into Comments collectionfmonthel2016-11-171-1/+1
|
* [ENH] Add index on CardId into Comments collectionfmonthel2016-11-171-4/+4
|
* [ENH] Add index on CardId into Comments collectionfmonthel2016-11-171-0/+6
|
* Models: Replace before.insert with autoValuesAlexander Sulfrian2016-06-031-5/+12
| | | | | | | | The before.insert hooks have the problem, that they are executed in a different order if called from the client or from the server. If called from the client, the before.insert hook is called before validation of the schema, but if called from the server, the validation is called first and fails.
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-0/+69
This commit uses a new package that I need to document. It tries to solve the long-standing debate in the Meteor community about allow/deny rules versus methods (RPC). This approach gives us both the centralized security rules of allow/deny and the white-list of allowed mutations similarly to Meteor methods. The idea to have static mutation descriptions is also inspired by Facebook's Relay/GraphQL. This will allow the development of a REST API using the high-level methods instead of the MongoDB queries to do the mapping between the HTTP requests and our collections.