summaryrefslogtreecommitdiffstats
path: root/models/activities.js
Commit message (Collapse)AuthorAgeFilesLines
* Add checklist items to activity logGhassen Rjab2017-07-261-0/+3
|
* Add call outgoing webhooks methodnztqa2017-07-091-0/+5
|
* Improve wekan performance #837maulal2017-02-221-0/+2
|
* Add checklist featurelksime2017-01-201-0/+7
|
* Add MongoDB indexesMaxime Quandalle2016-07-181-4/+6
| | | | | | | These indexes will optimize the queries that are used in the board and card views. Fixes #524.
* Improve PR, adding more commentsfloatinghotpot2016-01-061-10/+10
|
* Add notification, allow watch boards / lists / cardsLiming Xie2016-01-051-0/+73
|
* Centralize all mutations at the model levelMaxime Quandalle2015-09-081-0/+51
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.