mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
22 lines
604 B
TypeScript
22 lines
604 B
TypeScript
import {UserRoles} from '../../common/entities/UserDTO';
|
|
import {AuthenticationMWs} from '../middlewares/user/AuthenticationMWs';
|
|
import {RenderingMWs} from '../middlewares/RenderingMWs';
|
|
import {NotificationMWs} from '../middlewares/NotificationMWs';
|
|
|
|
export class NotificationRouter {
|
|
public static route(app: any) {
|
|
|
|
this.addGetNotifications(app);
|
|
}
|
|
|
|
private static addGetNotifications(app) {
|
|
app.get('/api/notifications',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Guest),
|
|
NotificationMWs.list,
|
|
RenderingMWs.renderResult
|
|
);
|
|
}
|
|
|
|
}
|