Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x 57x | import { ERouteControllerActionMethod, ERouteControllerActionPayload, IRouteController, } from '../../../../common/routing'; import { GetDeadLetteredHandler } from './get-dead-lettered/get-dead-lettered.handler'; import { GetDeadLetteredRequestDTO } from './get-dead-lettered/get-dead-lettered.request.DTO'; import { GetDeadLetteredResponseDTO } from './get-dead-lettered/get-dead-lettered.response.DTO'; import { GetAcknowledgedHandler } from './get-acknowledged/get-acknowledged.handler'; import { GetAcknowledgedRequestDTO } from './get-acknowledged/get-acknowledged.request.DTO'; import { GetAcknowledgedResponseDTO } from './get-acknowledged/get-acknowledged.response.DTO'; import { GetPublishedHandler } from './get-published-time-series/get-published.handler'; import { GetPublishedRequestDTO } from './get-published-time-series/get-published.request.DTO'; import { GetPublishedResponseDTO } from './get-published-time-series/get-published.response.DTO'; export const controller: IRouteController = { path: '/time-series', actions: [ { path: '/acknowledged', method: ERouteControllerActionMethod.GET, payload: [ ERouteControllerActionPayload.PATH, ERouteControllerActionPayload.QUERY, ], Handler: GetAcknowledgedHandler, RequestDTO: GetAcknowledgedRequestDTO, ResponseDTO: GetAcknowledgedResponseDTO, }, { path: '/dead-lettered', method: ERouteControllerActionMethod.GET, payload: [ ERouteControllerActionPayload.PATH, ERouteControllerActionPayload.QUERY, ], Handler: GetDeadLetteredHandler, RequestDTO: GetDeadLetteredRequestDTO, ResponseDTO: GetDeadLetteredResponseDTO, }, { path: '/published', method: ERouteControllerActionMethod.GET, payload: [ ERouteControllerActionPayload.PATH, ERouteControllerActionPayload.QUERY, ], Handler: GetPublishedHandler, RequestDTO: GetPublishedRequestDTO, ResponseDTO: GetPublishedResponseDTO, }, ], }; |