Skip to content

Commit f7c3972

Browse files
Updated import path for auth.
1 parent 973c67d commit f7c3972

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app-router.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { RouterModule } from '@nestjs/core';
33
import { CloudflareKvModule } from './cloudflare-kv/cloudflare-kv.module';
44
import { WssModule } from './wss/wss.module';
55
import { JobModule } from './jobs/job.module';
6-
import { AuthModule } from './common/auth/auth.module';
6+
import { AuthModule } from './auth/auth.module';
77

88
@Module({
99
imports: [

src/common/decorators/api.decorator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
ApiResponseOptions,
1313
ApiBearerAuth,
1414
} from '@nestjs/swagger';
15-
import { AuthUser, RedisAuthGuard } from './../auth/redis-auth.guard';
15+
import { AuthUser, RedisAuthGuard } from '../../auth/redis-auth.guard';
1616

1717
type ApiOptions = {
1818
apiOperationOptions?: Partial<ApiOperationOptions>;

src/jobs/job.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { JobService } from './job.service';
1717
import { CreateJobDto } from './dto/create-job.dto';
1818
import { UpdateJobDto } from './dto/update-job.dto';
1919
import { JobOrderByDto } from './dto/job-order-by.dto';
20-
import { RedisAuthGuard } from '../common/auth/redis-auth.guard';
20+
import { RedisAuthGuard } from '../auth/redis-auth.guard';
2121
import { UserEntity as User } from '../common/decorators/user.decorator';
2222
import { ApiPaginationQuery } from './../common/decorators/api-nested-query.decorator';
2323
import { PaginationArgs } from '../common/pagination/pagination.args';

0 commit comments

Comments
 (0)