summaryrefslogtreecommitdiffstats
path: root/models/cardComments.js
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #2596 incorrect date types for created & updatedJustin Reynolds2019-09-051-0/+2
|
* Prettier & eslint project style updateJustin Reynolds2019-06-281-12/+5
|
* Add createdAt and modifiedAt to all collectionsJustin Reynolds2019-06-271-116/+164
|
* - Fix Outgoing Webhook messages for Checlists, Checklist Items, Card ↵Lauri Ojansivu2019-06-271-2/+31
| | | | | | | | | | comments, Add/Remove CustomField to board. Not yet fixed is Outgoing Webhook message about setting CustomField value. Thanks to xet7 ! Related #1969
* Add variables for activity notifications Fixes #2285windblow2019-04-061-0/+2
|
* Fix list view issues. Allow creation of boards from templatesAndrés Manelli2019-02-251-1/+1
|
* Prepare to create card from templateAndrés Manelli2019-02-241-0/+6
|
* RESTAPI: Add some JSDocBenjamin Tissoires2019-01-181-0/+56
| | | | So we can have a decent REST API documentation generated.
* 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.