Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat, setting: 회원가입 Validation, 응답폼 작성, 프로젝트 세팅 수정 #43

Merged
merged 11 commits into from
Nov 15, 2022
Prev Previous commit
Next Next commit
feat: ApiModule 에서 AuthModule import
  • Loading branch information
soomanbaek committed Nov 15, 2022
commit e4207b910420adc7aa48fc3e95c2b897da2db9e2
2 changes: 2 additions & 0 deletions server/apps/api/src/api.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ConfigModule } from '@nestjs/config';
import { ChannelModule } from './channel/channel.module';
import { CommunityModule } from './community/community.module';
import { UserModule } from './user/user.module';
import { AuthModule } from './auth/auth.module';

@Module({
imports: [
Expand All @@ -17,6 +18,7 @@ import { UserModule } from './user/user.module';
UserModule,
ChannelModule,
CommunityModule,
AuthModule,
],
controllers: [ApiController],
providers: [ApiService],
Expand Down