File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class AppController {
1414 healthCheck ( ) {
1515 return {
1616 status : 'ok' ,
17- timestamp : new Date ( ) . toISOString ( )
17+ timestamp : new Date ( ) . toISOString ( ) ,
1818 } ;
1919 }
2020}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { RoleModule } from '../role/role.module';
99import { JwtAuthGuard } from '../auth/guards/jwt-auth.guard' ;
1010import { TokenModule } from '../auth/token/token.module' ;
1111import { TokenService } from '../auth/token/token.service' ;
12- import { ConfigModule } from '@nestjs/config' ;
12+ import { ConfigModule } from '@nestjs/config' ;
1313
1414@Module ( {
1515 imports : [
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ export class WorkspaceService {
216216 // 권한이 없으면 예외 발생
217217 throw new ForbiddenAccessException ( ) ;
218218 }
219-
219+
220220 return {
221221 workspaceId : workspace . snowflakeId ,
222222 title : workspace . title ,
@@ -227,7 +227,6 @@ export class WorkspaceService {
227227 } ;
228228 }
229229
230-
231230 /**
232231 * 가장 처음에 모두가 접속할 수 있는 main workspace를 생성한다.
233232 */
@@ -284,9 +283,9 @@ export class WorkspaceService {
284283 workspace : findWorkspace ,
285284 user : findOwner ,
286285 role : 'owner' ,
287- } ) ; }
286+ } ) ;
288287 }
289-
288+ }
290289
291290 async updateVisibility (
292291 userId : number ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export class AppController {
99 healthCheck ( ) {
1010 return {
1111 status : 'ok' ,
12- timestamp : new Date ( ) . toISOString ( )
12+ timestamp : new Date ( ) . toISOString ( ) ,
1313 } ;
1414 }
1515}
You can’t perform that action at this time.
0 commit comments