-
Notifications
You must be signed in to change notification settings - Fork 17
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
BC-8460 - Solve circular imports in board collaboration module #5359
Conversation
import { LoggerModule } from '@src/core/logger'; | ||
import { RoomMemberModule } from '../room-member'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Der Import verlässt das Module und muss mit @modules/room-member geschrieben werden.
import { createConfigModuleOptions, DB_PASSWORD, DB_URL, DB_USERNAME } from '@src/config'; | ||
import { CoreModule } from '@src/core'; | ||
import { RabbitMQWrapperModule } from '@src/infra/rabbitmq'; | ||
import { defaultMikroOrmOptions } from '@shared/common'; | ||
import { AuthenticationApiModule } from '../authentication/authentication-api.module'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ modules
import { AuthorizationModule } from '../authorization'; | ||
import { serverConfig } from '../server'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ modules ...aber kann im Kontext des TestHelper umbau auch raus.
imports: [ | ||
...imports, | ||
ConfigModule.forRoot(createConfigModuleOptions(testConfig)), | ||
AuthenticationApiModule, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Muss mit TestHelper Umbau wieder raus.
Quality Gate passedIssues Measures |
import { roomMemberFactory } from '@src/modules/room-member/testing'; | ||
import { columnFactory, columnBoardFactory } from '../../testing'; | ||
import { roomFactory } from '@src/modules/room/testing'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@modules Zeile 8-10
@@ -12,8 +12,8 @@ import { ToolConfigurationStatusService } from './service/tool-configuration-sta | |||
|
|||
@Module({ | |||
imports: [ | |||
forwardRef(() => CommonToolModule), | |||
forwardRef(() => ExternalToolModule), | |||
CommonToolModule, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uiii ich hoffe das geht gut. :D
Co-authored-by: Cedric Evers <[email protected]> Co-authored-by: hoeppner.dataport <[email protected]>
Description
Links to Tickets or other pull requests
Changes
Datasecurity
Deployment
New Repos, NPM pakages or vendor scripts
Approval for review
generate-client:server
was executed in vue frontend and changes were tested and put in a PR with the same branch name.