* 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>
16 lines
546 B
TypeScript
16 lines
546 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { CommentModule } from 'src/core/comment/comment.module';
|
|
import { ActivityModule } from 'src/core/activity/activity.module';
|
|
|
|
import { CompanyService } from './company.service';
|
|
import { CompanyResolver } from './company.resolver';
|
|
import { CompanyRelationsResolver } from './company-relations.resolver';
|
|
|
|
@Module({
|
|
imports: [CommentModule, ActivityModule],
|
|
providers: [CompanyService, CompanyResolver, CompanyRelationsResolver],
|
|
exports: [CompanyService],
|
|
})
|
|
export class CompanyModule {}
|