summaryrefslogtreecommitdiffstats
path: root/models/activities.js
Commit message (Collapse)AuthorAgeFilesLines
* Addfeature: Enable HTML email content for richer commentSam X. Chen2019-08-121-2/+6
|
* Add Features: notifications will be sent when user is being @, or ↵Sam X. Chen2019-07-111-0/+33
| | | | activitytype matches env var BIGENVENTS
* Outgoing Webhooks setCustomField: Add board name, card name, custom field ↵Lauri Ojansivu2019-07-101-1/+3
| | | | | | | | name to be visible. Still missing: custom field value, list name, swimlane name. Thanks to xet7 !
* Add Feature: system timelines will be showing any modification for duat ↵Sam X. Chen2019-07-091-1/+12
| | | | startat endat receivedat, also notification to the watchers and if card is due, watchers will be notified
* Prettier & eslint project style updateJustin Reynolds2019-06-281-12/+7
|
* Add createdAt and modifiedAt to all collectionsJustin Reynolds2019-06-271-7/+38
|
* - Fix Outgoing Webhook messages for Checlists, Checklist Items, Card ↵Lauri Ojansivu2019-06-271-0/+1
| | | | | | | | | | comments, Add/Remove CustomField to board. Not yet fixed is Outgoing Webhook message about setting CustomField value. Thanks to xet7 ! Related #1969
* Show attachment name in Outgoing Webhook when attachment is added to card.Lauri Ojansivu2019-06-111-1/+2
| | | | | | Thanks to xet7 ! Related #2285
* Fix watchers undefined #2252Justin Reynolds2019-03-121-9/+15
|
* [Fix Adding Labels to cards is not possible ↵Lauri Ojansivu2019-03-041-11/+13
| | | | | | | | anymore](https://github.com/wekan/wekan/issues/2223). Thanks to xet7 ! Closes #2223
* [Add more Webhook translations](https://github.com/wekan/wekan/issues/1969).Lauri Ojansivu2019-03-031-0/+29
| | | | | | | | In progress. Thanks to xet7 ! Related #1969
* update broke ability to mute notificationsguillaume2018-10-161-2/+2
|
* improve notificationsguillaume2018-10-111-11/+0
|
* Fix lint errors.Lauri Ojansivu2018-09-161-5/+2
|
* Merge branch 'feature-rules' of https://github.com/Angtrim/wekan into ↵Lauri Ojansivu2018-09-161-0/+11
|\ | | | | | | Angtrim-feature-rules
| * Main flow implementedAngelo Gallarello2018-08-161-5/+5
| |
| * Almost full circleAngelo Gallarello2018-08-151-0/+11
| |
* | Add swimlaneId in activity. Create default swimlaneId in APIAndrés Manelli2018-09-061-0/+3
|/
* Get rid of old implementation for substacksNicu Tofan2018-06-261-1/+1
|
* Initial implementation for subtasksNicu Tofan2018-06-261-0/+3
|
* resolving merge conflictsIgnatzHome2018-05-171-0/+8
|\
| * Create custom fields creation UI added to Board Menu, Model in progressPouyan Savoli2017-09-221-0/+8
| |
* | 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.