* feat: rename commentThread into activity server * feat: rename commentThread into activity front * feat: migration only create tables feat: migration only create tables * Update activities * fix: rebase partial fix * fix: all rebase problems and drop activity target alter * fix: lint * Update migration * Update migration * Fix conflicts * Fix conflicts --------- Co-authored-by: Charles Bochet <charles@twenty.com>
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { CommentService } from './comment.service';
|
|
import { CommentResolver } from './comment.resolver';
|
|
|
|
@Module({
|
|
providers: [CommentService, CommentResolver],
|
|
exports: [CommentService],
|
|
})
|
|
export class CommentModule {}
|