keystone-classic
keystone-classic copied to clipboard
Node.js CMS and web app framework
At the moment if you have no `name` path or mapping, and no `initial` fields, you get an empty "create" dialog. In this scenario, we should do one of the...
### Expected behavior Calling `findOneAndUpdate` and creating a new document (while `upsert` is set to `true`) as a result of the function should also update the tracked `createdAt` and `createdBy`...
We should allow all options that the Cloudinary API supports from the CloudinaryImage(s) field type options, e.g. `folder`, `use_filename`, etc. Full list here: http://cloudinary.com/documentation/node_image_upload
### Expected behavior When both max and min are specified in a field definition, over length strings should be refused. ### Actual/Current behavior Over length string accepted ### Steps to...
### Expected behavior According to the documentation I can make the user select an existing CloudinaryImage: http://keystonejs.com/docs/database/#fieldtypes-cloudinaryimage ### Actual/Current behavior This is inside my model: ``` image: { type: Types.CloudinaryImage,...
Hi Guys, I'm just here to report a bug. The "generateFilename" function for cloudinaryImage type does not work for me and causes the admin UI to hang for ages until...
### Expected behavior My model has a field to store documents that has option required:true In the AdminUI saving an element with no document shall be refused ### Actual/Current behavior...
I have a record which has value DBRef (company key) ``` { "firstname": "John", "lastname": "Tucker", "company" : DBRef("company", ObjectId("580ed4023ce70e5f8012875b")) } ``` Sample Model Code: ``` User.add({ firstname: {type: String...
### Expected behavior with below model B { bValue: { type: String} } A { b: { type: Types.Relationship, ref: 'B', many: false } } A.defaultColumns ='b:bValue'; With above setting,...
### Expected behavior When trying to download > 100k records using the CSV download button. It should either download, warn that the size is too large or timeout gracefully. ###...