1234567891011121314151617 |
- import { Request, Response } from 'express'
- import { BaseHttpController, controller, httpPost } from 'inversify-express-utils'
- import { inject } from 'inversify'
- import { TYPES } from '../../Bootstrap/Types'
- import { ServiceProxyInterface } from '../../Service/Proxy/ServiceProxyInterface'
- @controller('/v1')
- export class InvoicesController extends BaseHttpController {
- constructor(@inject(TYPES.ApiGateway_ServiceProxy) private httpService: ServiceProxyInterface) {
- super()
- }
- @httpPost('/invoices/send-latest', TYPES.ApiGateway_SubscriptionTokenAuthMiddleware)
- async sendLatestInvoice(request: Request, response: Response): Promise<void> {
- await this.httpService.callPaymentsServer(request, response, 'api/pro_users/send-invoice', request.body)
- }
- }
|