From 7cbe565f4f2c6372cf5178ac0e901dabb6a6dab0 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 15 Jun 2021 13:28:59 +0100 Subject: [PATCH] Fixed JSDocs in base model no issue - Promise parameter types are given in diamond branches instead of parentheses, so switching to this makes editors happy --- core/server/models/base/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/server/models/base/index.js b/core/server/models/base/index.js index 40d5ceb7d9..26dda32e6e 100644 --- a/core/server/models/base/index.js +++ b/core/server/models/base/index.js @@ -912,7 +912,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ * ### Find All * Fetches all the data for a particular model * @param {Object} unfilteredOptions (optional) - * @return {Promise(ghostBookshelf.Collection)} Collection of all Models + * @return {Promise} Collection of all Models */ findAll: function findAll(unfilteredOptions) { const options = this.filterOptions(unfilteredOptions, 'findAll'); @@ -1015,7 +1015,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ * Naive find one where data determines what to match on * @param {Object} data * @param {Object} unfilteredOptions (optional) - * @return {Promise(ghostBookshelf.Model)} Single Model + * @return {Promise} Single Model */ findOne: function findOne(data, unfilteredOptions) { const options = this.filterOptions(unfilteredOptions, 'findOne'); @@ -1044,7 +1044,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ * * @param {Object} data * @param {Object} unfilteredOptions (optional) - * @return {Promise(ghostBookshelf.Model)} Edited Model + * @return {Promise} Edited Model */ edit: function edit(data, unfilteredOptions) { const options = this.filterOptions(unfilteredOptions, 'edit'); @@ -1080,7 +1080,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ * Naive add * @param {Object} data * @param {Object} unfilteredOptions (optional) - * @return {Promise(ghostBookshelf.Model)} Newly Added Model + * @return {Promise} Newly Added Model */ add: function add(data, unfilteredOptions) { const options = this.filterOptions(unfilteredOptions, 'add'); @@ -1111,7 +1111,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ * ### Destroy * Naive destroy * @param {Object} unfilteredOptions (optional) - * @return {Promise(ghostBookshelf.Model)} Empty Model + * @return {Promise} Empty Model */ destroy: function destroy(unfilteredOptions) { const options = this.filterOptions(unfilteredOptions, 'destroy'); @@ -1142,7 +1142,7 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({ * @param {ghostBookshelf.Model} Model Model type to generate a slug for * @param {String} base The string for which to generate a slug, usually a title or name * @param {Object} options Options to pass to findOne - * @return {Promise(String)} Resolves to a unique slug string + * @return {Promise} Resolves to a unique slug string */ generateSlug: function generateSlug(Model, base, options) { let slug;