OTP_EXPIRATION_TIME
This commit is contained in:
@@ -2,8 +2,8 @@ import { Controller, Get, Param } from '@nestjs/common';
|
||||
import { CategoryService } from '../providers/category.service';
|
||||
import { ApiTags, ApiOperation, ApiOkResponse, ApiParam } from '@nestjs/swagger';
|
||||
|
||||
@ApiTags('categories')
|
||||
@Controller('categories')
|
||||
@ApiTags('public/categories')
|
||||
@Controller('public/categories')
|
||||
export class PublicCategoryController {
|
||||
constructor(private readonly categoryService: CategoryService) {}
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ import { Controller, Get, Param } from '@nestjs/common';
|
||||
import { FoodService } from '../providers/food.service';
|
||||
import { ApiTags, ApiOperation, ApiOkResponse, ApiParam } from '@nestjs/swagger';
|
||||
|
||||
@ApiTags('foods')
|
||||
@Controller('foods')
|
||||
@ApiTags('public/foods')
|
||||
@Controller('public/foods')
|
||||
export class PublicFoodController {
|
||||
constructor(private readonly foodService: FoodService) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user