farsi messages

This commit is contained in:
2025-12-22 19:12:03 +03:30
parent ed251611c4
commit 1802b05e74
14 changed files with 365 additions and 230 deletions
@@ -10,6 +10,7 @@ import type { FastifyReply, FastifyRequest } from 'fastify';
import { AdminAuthGuard } from '../../auth/guards/adminAuth.guard';
import { AdminId } from 'src/common/decorators/admin-id.decorator';
import { UpdatePagerStatusDto } from '../dto/update-pager.dto';
import { PagerMessage } from 'src/common/enums/message.enum';
@ApiTags('pager')
@Controller()
@@ -49,7 +50,7 @@ export class PagerController {
});
return reply.code(200).send({
success: true,
message: 'Pager request created successfully',
message: PagerMessage.CREATED_SUCCESS,
data: null,
});
}