Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Provide a default date for lists and cards creation date | Maxime Quandalle | 2015-10-20 | 1 | -24/+36 |
| | | | | | | | | See https://github.com/wekan/wekan/pull/362#issuecomment-149645497 for motivation. This commit also contains cosmetic changes to the import Popup and on the code style to be more consistent with the code base. | ||||
* | Import board: map team permission, and refactor code to share with card import | Xavier Priour | 2015-10-19 | 2 | -132/+80 |
| | |||||
* | Import board: check json structure before importing | Xavier Priour | 2015-10-19 | 1 | -6/+58 |
| | |||||
* | Import board: set proper color and modifiedAt dates | Xavier Priour | 2015-10-19 | 1 | -7/+28 |
| | |||||
* | Import board: import comments and log activities | Xavier Priour | 2015-10-19 | 1 | -49/+117 |
| | |||||
* | Import board: create board, lists, and cards | Xavier Priour | 2015-10-18 | 1 | -13/+66 |
| | |||||
* | Import board: now proper createdAt dates | Xavier Priour | 2015-10-17 | 1 | -0/+73 |
| | |||||
* | Import board: added UI | Xavier Priour | 2015-10-17 | 1 | -5/+20 |
| | |||||
* | Add some ESLint rules and fix some related issues | Maxime Quandalle | 2015-10-14 | 1 | -8/+7 |
| | |||||
* | Prevent dublicated empty labels of the same color | Maxime Quandalle | 2015-10-14 | 1 | -5/+14 |
| | |||||
* | Import single card: proper error handling | Xavier Priour | 2015-10-14 | 1 | -22/+26 |
| | |||||
* | Import single card: create an 'importCard' activity entry | Xavier Priour | 2015-10-14 | 1 | -8/+22 |
| | |||||
* | Import single card: check user authorized | Xavier Priour | 2015-10-14 | 1 | -10/+16 |
| | |||||
* | Import single card: now uses historical dates | Xavier Priour | 2015-10-14 | 1 | -11/+20 |
| | |||||
* | Import single card: refactor to meteor method | Xavier Priour | 2015-10-14 | 1 | -0/+98 |
| | |||||
* | Import single card: archived card | Xavier Priour | 2015-10-14 | 1 | -2/+3 |
| | |||||
* | Import single card: map labels | Xavier Priour | 2015-10-14 | 1 | -2/+8 |
| | |||||
* | Centralize all mutations at the model level | Maxime Quandalle | 2015-09-08 | 9 | -0/+1166 |
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. |