summaryrefslogtreecommitdiffstats
path: root/models/activities.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix migration. Replace old checklist-item sort algorithm.Andrés Manelli2018-03-191-1/+1
|
* Fix swimlane info not displayed in activitiesAndrés Manelli2018-03-161-0/+3
|
* Add some parameters to webhookAndrés Manelli2017-09-291-0/+1
|
* add translation (en/de) for email notifications regarding checklists and ↵Felix Michels2017-09-221-0/+4
| | | | checklist items
* Add activity subscription to integrations. Add API for integrations. Allow ↵Andrés Manelli2017-08-301-3/+3
| | | | multiple integrations per board
* Add some IDs to webhook bodyAndrés Manelli2017-08-161-0/+5
|
* 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.