瀏覽代碼

fix: update import path for SCOPE from '../../interfaces/scope' to '@growi/core/dist/interfaces'

Shun Miyazawa 11 月之前
父節點
當前提交
5084e971ee
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      apps/app/src/server/util/scope-utils.ts

+ 1 - 1
apps/app/src/server/util/scope-utils.ts

@@ -1,6 +1,6 @@
 import {
   ACTION, ALL_SIGN, SCOPE, type Scope,
-} from '../../interfaces/scope';
+} from '@growi/core/dist/interfaces';
 
 export const isValidScope = (scope: Scope): boolean => {
   const scopeParts = scope.split(':').map(x => (x === ALL_SIGN ? 'ALL' : x.toUpperCase()));