Skip to content

Commit

Permalink
imported Scope relatively instead of using alias
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfganggreschus committed Sep 28, 2023
1 parent 11d18b6 commit 943a949
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Scope } from '@shared/repo';
import { EntityId } from '@shared/domain';
import { ToolContextType } from '@src/modules/tool/common/enum';
import { ContextExternalToolEntity } from '@src/modules/tool/context-external-tool/entity';
import { Scope } from '../scope';

export class ContextExternalToolScope extends Scope<ContextExternalToolEntity> {
byId(id: EntityId | undefined): ContextExternalToolScope {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Scope } from '@shared/repo/scope';
import { EntityId } from '@shared/domain';
import { SchoolExternalToolEntity } from '@src/modules/tool/school-external-tool/entity';
import { Scope } from '../scope';

export class SchoolExternalToolScope extends Scope<SchoolExternalToolEntity> {
bySchoolId(schoolId: EntityId | undefined): this {
Expand Down

0 comments on commit 943a949

Please sign in to comment.