diff --git a/ghost/core/core/server/services/offers/OfferBookshelfRepository.js b/ghost/core/core/server/services/offers/OfferBookshelfRepository.js index 0c104c68f5..91aeb1fd3f 100644 --- a/ghost/core/core/server/services/offers/OfferBookshelfRepository.js +++ b/ghost/core/core/server/services/offers/OfferBookshelfRepository.js @@ -91,7 +91,7 @@ class OfferBookshelfRepository { * @private * @param {import('bookshelf').Model} model * @param {BaseOptions} options - * @returns {Promise} + * @returns {Promise} */ async mapToOffer(model, options) { const json = model.toJSON(); @@ -123,7 +123,7 @@ class OfferBookshelfRepository { /** * @param {string} id * @param {BaseOptions} [options] - * @returns {Promise} + * @returns {Promise} */ async getById(id, options) { const model = await this.OfferModel.findOne({id}, { @@ -141,7 +141,7 @@ class OfferBookshelfRepository { /** * @param {string} id stripe_coupon_id * @param {BaseOptions} [options] - * @returns {Promise} + * @returns {Promise} */ async getByStripeCouponId(id, options) { const model = await this.OfferModel.findOne({stripe_coupon_id: id}, { @@ -158,7 +158,7 @@ class OfferBookshelfRepository { /** * @param {ListOptions} options - * @returns {Promise} + * @returns {Promise} */ async getAll(options) { const models = await this.OfferModel.findAll({