icynet-auth-server/src/app.controller.ts

11 lines
185 B
TypeScript
Raw Permalink Normal View History

2022-03-20 17:51:42 +00:00
import { Controller, Get, Redirect } from '@nestjs/common';
2022-03-09 18:37:04 +00:00
@Controller()
export class AppController {
@Get()
2022-03-20 17:51:42 +00:00
@Redirect('/account/general')
2022-12-04 12:24:10 +00:00
trueURLRedirect() {
2022-03-20 17:51:42 +00:00
return;
2022-03-09 18:37:04 +00:00
}
}