development-local #141

Merged
irfan merged 2 commits from development-local into development 2025-05-27 13:27:22 +07:00
3 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import { ApiTags } from '@nestjs/swagger';
@ApiTags('Booking Authentication') @ApiTags('Booking Authentication')
@Public() @Public()
@Controller('booking-authentication') @Controller('v1/booking-authentication')
export class BookingAuthenticationController { export class BookingAuthenticationController {
constructor( constructor(
private readonly bookingAuthenticationService: VerificationService, private readonly bookingAuthenticationService: VerificationService,

View File

@ -9,7 +9,7 @@ import { IndexItemManager } from 'src/modules/item-related/item/domain/usecases/
import { FilterItemDto } from 'src/modules/item-related/item/infrastructure/dto/filter-item.dto'; import { FilterItemDto } from 'src/modules/item-related/item/infrastructure/dto/filter-item.dto';
@ApiTags('Booking Item') @ApiTags('Booking Item')
@Controller('booking-item') @Controller('v1/booking-item')
@Public(true) @Public(true)
export class ItemController { export class ItemController {
constructor( constructor(

View File

@ -26,6 +26,7 @@ export class SeasonPeriodReadController {
return await this.orchestrator.index(params); return await this.orchestrator.index(params);
} }
@Public(true)
@Get('current-period') @Get('current-period')
async currentPeriod( async currentPeriod(
@Query() params: FilterCurrentSeasonDto, @Query() params: FilterCurrentSeasonDto,