-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: space.controller , space.service * feat: 작업 내용 저장 * fix: save point * refactor: lint 스타일로 코드 재작성
- Loading branch information
1 parent
66b4afe
commit b5ab48b
Showing
38 changed files
with
5,903 additions
and
11,246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Backend | ||
/packages/backend/* | ||
/packages/backend/**/* | ||
|
||
# Build outputs | ||
**/dist | ||
**/build | ||
**/coverage | ||
|
||
# Dependencies | ||
**/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
61 changes: 0 additions & 61 deletions
61
packages/backend/src/collaborative/collaborative.controller.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
import { Module } from '@nestjs/common'; | ||
import { NoteModule } from 'src/note/note.module'; | ||
import { SpaceModule } from 'src/space/space.module'; | ||
|
||
import { NoteModule } from '../note/note.module'; | ||
import { SpaceModule } from '../space/space.module'; | ||
import { CollaborativeService } from './collaborative.service'; | ||
import { CollaborativeController } from './collaborative.controller'; | ||
|
||
@Module({ | ||
imports: [NoteModule, SpaceModule], | ||
providers: [CollaborativeService], | ||
exports: [CollaborativeService], | ||
controllers: [CollaborativeController], | ||
}) | ||
export class CollaborativeModule {} |
Oops, something went wrong.