Compare commits
2 Commits
1.6.0-alph
...
developmen
Author | SHA1 | Date |
---|---|---|
|
94e769795a | |
|
968697ee17 |
|
@ -10,7 +10,7 @@ import { ApiTags } from '@nestjs/swagger';
|
|||
|
||||
@ApiTags('Booking Authentication')
|
||||
@Public()
|
||||
@Controller('booking-authentication')
|
||||
@Controller('v1/booking-authentication')
|
||||
export class BookingAuthenticationController {
|
||||
constructor(
|
||||
private readonly bookingAuthenticationService: VerificationService,
|
||||
|
|
|
@ -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';
|
||||
|
||||
@ApiTags('Booking Item')
|
||||
@Controller('booking-item')
|
||||
@Controller('v1/booking-item')
|
||||
@Public(true)
|
||||
export class ItemController {
|
||||
constructor(
|
||||
|
|
|
@ -26,6 +26,7 @@ export class SeasonPeriodReadController {
|
|||
return await this.orchestrator.index(params);
|
||||
}
|
||||
|
||||
@Public(true)
|
||||
@Get('current-period')
|
||||
async currentPeriod(
|
||||
@Query() params: FilterCurrentSeasonDto,
|
||||
|
|
Loading…
Reference in New Issue