Decorators for Controllers and HTTP Responses



@ApiResponse


@ApiResponse Properties
Last updated





Last updated
@Get('notification-categories')
@ApiResponse({
status: 200,
type: NotificationCategories,
description: 'Successfuly operation.',
})
public getNotificationCategories() {
return this.communicationService.getNotificationCategories();
}