mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 08:48:11 +00:00
Merge pull request #1136 from Tria-plc/alpha
Excess baggage payment link quick fix
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import { Body, Controller, Delete, Get, Param, Patch, Post, Query, Request, UseGuards } from '@nestjs/common';
|
import { Body, Controller, Delete, Get, Param, Patch, Post, Query, Request, UseGuards, SetMetadata } from '@nestjs/common';
|
||||||
import { ApiTags, ApiOperation, ApiBearerAuth } from '@nestjs/swagger';
|
import { ApiTags, ApiOperation, ApiBearerAuth } from '@nestjs/swagger';
|
||||||
import { IsInt, IsOptional, IsPositive, IsString } from 'class-validator';
|
import { IsInt, IsOptional, IsPositive, IsString } from 'class-validator';
|
||||||
import { ExcessBaggageService } from './excess-baggage.service';
|
import { ExcessBaggageService } from './excess-baggage.service';
|
||||||
@@ -107,6 +107,7 @@ export class ExcessBaggageAgentController {
|
|||||||
|
|
||||||
// ── Public pay-by-token routes (passenger self-service) ──────────────────────
|
// ── Public pay-by-token routes (passenger self-service) ──────────────────────
|
||||||
@ApiTags('Excess Luggage')
|
@ApiTags('Excess Luggage')
|
||||||
|
@SetMetadata('isPublic', true)
|
||||||
@Controller('excess-baggage')
|
@Controller('excess-baggage')
|
||||||
export class ExcessBaggagePublicController {
|
export class ExcessBaggagePublicController {
|
||||||
constructor(private service: ExcessBaggageService) {}
|
constructor(private service: ExcessBaggageService) {}
|
||||||
|
|||||||
Reference in New Issue
Block a user