Skip to content

Commit

Permalink
🎨 Remove admin guard from admin module providers
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys committed May 15, 2024
1 parent 8b5a9e0 commit 4e1ecad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/modules/webtoon/admin/admin.module.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import {Module} from "@nestjs/common";
import {AdminController} from "./admin.controller";
import {WebtoonModule} from "../webtoon/webtoon.module";
import {AdminGuard} from "./guard/admin.guard";

@Module({
imports: [WebtoonModule],
controllers: [AdminController],
providers: [AdminGuard],
providers: [],
})
export class AdminModule{}

0 comments on commit 4e1ecad

Please sign in to comment.