File size: 1,075 Bytes
3722089 | 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 | import { Controller, Get } from '@nestjs/common';
import { GetUserFromRequest } from '@gitroom/nestjs-libraries/user/user.from.request';
import { Organization, User } from '@prisma/client';
import { GetOrgFromRequest } from '@gitroom/nestjs-libraries/user/org.from.request';
import { NotificationService } from '@gitroom/nestjs-libraries/database/prisma/notifications/notification.service';
import { ApiTags } from '@nestjs/swagger';
@ApiTags('Notifications')
@Controller('/notifications')
export class NotificationsController {
constructor(private _notificationsService: NotificationService) {}
@Get('/')
async mainPageList(
@GetUserFromRequest() user: User,
@GetOrgFromRequest() organization: Organization
) {
return this._notificationsService.getMainPageCount(
organization.id,
user.id
);
}
@Get('/list')
async notifications(
@GetUserFromRequest() user: User,
@GetOrgFromRequest() organization: Organization
) {
return this._notificationsService.getNotifications(
organization.id,
user.id
);
}
}
|