summaryrefslogtreecommitdiffstats
path: root/models/unsavedEdits.js
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #2596 incorrect date types for created & updatedJustin Reynolds2019-09-051-0/+2
|
* Prettier & eslint project style updateJustin Reynolds2019-06-281-8/+1
|
* Add createdAt and modifiedAt to all collectionsJustin Reynolds2019-06-271-18/+55
|
* Improve wekan performance #837maulal2017-02-221-0/+3
|
* Models: Replace before.insert with autoValuesAlexander Sulfrian2016-06-031-4/+5
| | | | | | | | 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/+34
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.