Skip to content

Commit 7f20400

Browse files
authored
Revert "Setup authentication endpoints (#26)" (#27)
This reverts commit 7df2fa3.
1 parent 7df2fa3 commit 7f20400

30 files changed

+393
-2090
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,3 @@ testem.log
3737
# System Files
3838
.DS_Store
3939
Thumbs.db
40-
41-
# Environment file
42-
*.env
43-
*.env.*
File renamed without changes.

apps/backend/src/app.module.ts renamed to apps/backend/src/app/app.module.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import { TypeOrmModule } from '@nestjs/typeorm';
33

44
import { AppController } from './app.controller';
55
import { AppService } from './app.service';
6-
import { UsersModule } from './users/users.module';
7-
import { AuthModule } from './auth/auth.module';
8-
import { PluralNamingStrategy } from './strategies/plural-naming.strategy';
6+
import { UsersModule } from '../users/users.module';
7+
import { PluralNamingStrategy } from '../strategies/plural-naming.strategy';
98

109
@Module({
1110
imports: [
@@ -23,7 +22,6 @@ import { PluralNamingStrategy } from './strategies/plural-naming.strategy';
2322
namingStrategy: new PluralNamingStrategy(),
2423
}),
2524
UsersModule,
26-
AuthModule,
2725
],
2826
controllers: [AppController],
2927
providers: [AppService],
File renamed without changes.
File renamed without changes.

apps/backend/src/auth/auth.controller.spec.ts

Lines changed: 0 additions & 18 deletions
This file was deleted.

apps/backend/src/auth/auth.controller.ts

Lines changed: 0 additions & 66 deletions
This file was deleted.

apps/backend/src/auth/auth.module.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

apps/backend/src/auth/auth.service.spec.ts

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)