Skip to content

Commit

Permalink
DPO3DPKRT-841/incorrect references for COMMON using relative paths (#614
Browse files Browse the repository at this point in the history
)

updated to use '@dpo-packrat/common'
  • Loading branch information
EMaslowskiQ authored Aug 12, 2024
1 parent 4e0f2a6 commit f4ad50d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/db/api/WorkflowSet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as DBC from '../connection';
import * as DBAPI from '../';
import * as LOG from '../../utils/logger';
import * as H from '../../utils/helpers';
import * as COMMON from '../../../common';
import * as COMMON from '@dpo-packrat/common';

export class WorkflowSet extends DBC.DBObject<WorkflowSetBase> implements WorkflowSetBase {
idWorkflowSet!: number;
Expand Down
2 changes: 1 addition & 1 deletion server/http/routes/api/generateDownloads.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import * as LOG from '../../../utils/logger';
import * as DBAPI from '../../../db';
import * as H from '../../../utils/helpers';
import * as COMMON from '../../../../common';
import * as COMMON from '@dpo-packrat/common';
import * as COL from '../../../collections/interface';
import { ASL, LocalStore } from '../../../utils/localStore';

Expand Down
2 changes: 1 addition & 1 deletion server/http/routes/api/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import * as LOG from '../../../utils/logger';
import * as DBAPI from '../../../db';
import * as H from '../../../utils/helpers';
import * as COMMON from '../../../../common';
import * as COMMON from '@dpo-packrat/common';
import { ASL, LocalStore } from '../../../utils/localStore';
import { PublishScene } from '../../../collections/impl/PublishScene';
// import { eEventKey } from '../../../event/interface/EventEnums';
Expand Down

0 comments on commit f4ad50d

Please sign in to comment.