You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
561 B
TypeScript
15 lines
561 B
TypeScript
import { Controller, UseGuards } from '@nestjs/common';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
import { PaymentStatusDto } from 'src/dto/payment-status.dto';
|
|
import { PcdFormGridController } from 'src/framework/beans/pcd-form-grid.controller';
|
|
import { PaymentStatusService } from './payment-status.service';
|
|
|
|
@UseGuards(AuthGuard())
|
|
@Controller('payment-status')
|
|
export class PaymentStatusController extends PcdFormGridController<PaymentStatusDto>{
|
|
constructor(
|
|
private iservice: PaymentStatusService
|
|
) {
|
|
super(iservice);
|
|
}
|
|
} |