summaryrefslogtreecommitdiffstats
path: root/models/lists.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix lint warningsGhassen Rjab2018-02-271-4/+4
|
* Fixing cards query to apply sortViViDboarder2018-02-061-2/+2
| | | | Issue #1461
* Allow toogle of lists and swimlanes viewsAndrés Manelli2018-01-221-3/+6
|
* First swimlane draft, no functionalityAndrés Manelli2018-01-191-1/+2
|
* REST API better error output. Thanks to soohwa ! Related #1037Lauri Ojansivu2017-11-191-41/+73
|\
| * Add REST API better error outputsoohwa2017-10-151-41/+73
| |
* | added soft wip limit feature, fixed wipLimit=0 bug (??)amadilsons2017-10-311-19/+23
|/
* added i18n translation, minor fixamadilsons2017-10-051-2/+2
|
* feature implemented, known bugs fixedamadilsons2017-10-051-5/+42
|
* most work concluded, code needs clean up, further testing requiredamadilsons2017-10-041-10/+1
|
* on its wayamadilsons2017-10-041-1/+27
|
* mostly frontend work, lists coll update with wipLimit fieldamadilsons2017-09-291-1/+4
|
* basic frontend setup, List model updated with wipLimit fieldamadilsons2017-09-281-0/+5
|
* Modified access to GET /api/boards/:boardId/lists/:listIdmayjs2017-05-151-1/+1
|
* Modified access to GET /api/boards/:boardId/listsmayjs2017-05-151-1/+2
|
* add token authentication, only admin can use apihuneau romain2017-05-111-0/+4
|
* REST API - Meteor 1.4 - first step issueLauri Ojansivu2017-04-271-3/+55
|
* comment only working, naive implementation completeRyan Helsing2017-03-181-3/+3
|
* missing comaBéranger Campardou2017-01-201-1/+1
|
* Fix activity message for list deletionBéranger Campardou2017-01-201-0/+11
|
* Add MongoDB indexesMaxime Quandalle2016-07-181-0/+4
| | | | | | | These indexes will optimize the queries that are used in the board and card views. Fixes #524.
* Models: Replace before.insert with autoValuesAlexander Sulfrian2016-06-031-14/+19
| | | | | | | | 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/+110
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.