Compare commits

..

No commits in common. "development-local" and "1.6.0-alpha.1" have entirely different histories.

3 changed files with 2 additions and 3 deletions

View File

@ -10,7 +10,7 @@ import { ApiTags } from '@nestjs/swagger';
@ApiTags('Booking Authentication')
@Public()
@Controller('v1/booking-authentication')
@Controller('booking-authentication')
export class BookingAuthenticationController {
constructor(
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';
@ApiTags('Booking Item')
@Controller('v1/booking-item')
@Controller('booking-item')
@Public(true)
export class ItemController {
constructor(

View File

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