All files / platform/modules/booking/src/Services NotificationService.js

100% Statements 5/5
100% Branches 1/1
100% Functions 4/4
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37        7x       7x             6x                               2x       1x  
'use strict';
 
class NotificationService {
  static get inject() {
    return [`C2C/Repositories/NotificationRepo`];
  }
 
  constructor(notificationRepo) {
    this._notificationRepo = notificationRepo;
  }
 
  /**
   * @return {Promise<Notification[]>}
   */
  getWithPage(conditions, page, limit, includes = {}) {
    return this._notificationRepo.paginateBy(
      {
        ...conditions,
        objectType: 'booking',
      },
      page,
      limit,
      includes,
      'createdAt desc',
    );
  }
 
  /**
   * @return {Promise<Notification[]>}
   */
  readBy(conditions) {
    return this._notificationRepo.update(conditions, { isRead: true });
  }
}
 
module.exports = NotificationService;