postiz/apps/backend/src/api/routes/notifications.controller.ts

34 lines
1.0 KiB
TypeScript

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
);
}
}