-
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
EW-1057: Barrel Exports changes and Deep imports modified #5365
Conversation
* fixing room date validation on create and update
Quality Gate passedIssues Measures |
…d the parent config added and modified
Quality Gate passedIssues Measures |
apps/server/src/infra/sync/strategy/tsp/tsp-legacy-migration.service.integration.spec.ts
Show resolved
Hide resolved
@@ -4,8 +4,8 @@ import { systemFactory } from '@modules/system/testing'; | |||
import { InternalServerErrorException } from '@nestjs/common'; | |||
import { Test, TestingModule } from '@nestjs/testing'; | |||
import { SystemProvisioningStrategy } from '@shared/domain/interface/system-provisioning.strategy'; | |||
import { IservProvisioningStrategy, OidcMockProvisioningStrategy, SanisProvisioningStrategy } from '..'; |
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.
[Optional] For clarity maybe keep '../strategy'
import { IservProvisioningStrategy, OidcMockProvisioningStrategy, SanisProvisioningStrategy } from '..'; | |
import { IservProvisioningStrategy, OidcMockProvisioningStrategy, SanisProvisioningStrategy } from '../strategy'; |
Description
In the Dataport TSP code review, the TSP related code were reviewed. In this ticket the TODOs related to imports and barrel files have to be solved. The to-dos include the following:
Explicit export in barrel files (no '*' exports)
No deep module imports if possible (maybe export necassary things from modules - if you are unsure, ask Thomas or Cedric)
Delete 'src' from module imports if it is possible
Changes are done in this scope
TSP (so ungefähr):
infra/tsp-client
infra/sync
modules/provisioning/strategy/tsp
Links to Tickets or other pull requests
https://ticketsystem.dbildungscloud.de/secure/RapidBoard.jspa?rapidView=418&projectKey=EW&view=detail&selectedIssue=EW-1057#
Changes
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.