Package-level declarations

Types

Link copied to clipboard
@RestController
@RequestMapping(value = ["/api/v1"])
class BackendController(service: DatabaseService)

Controller for managing Database

Link copied to clipboard
@RestController
@RequestMapping(value = ["/api/v1/notifications"])
class NotificationsController(notificationsListService: NotificationsListService)

Controller with endpoints to work with notifications

Link copied to clipboard
@RestController
@RequestMapping(value = ["/api/v1/queues"])
class QueueController(queueService: QueueService, toDoService: ToDoTaskService)

Controller with endpoints to work with queues

Link copied to clipboard
@RestController
@RequestMapping(value = ["/api/v1/user"])
class UserController(service: UserService)

Controller with endpoints to work with user model