X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b0573b45f19c656ac07901004a3686ef10d402a5..6ee23f0a48cce527596ef1f260b40a71618326a5:/src/models/project.ts diff --git a/src/models/project.ts b/src/models/project.ts index beb9810cc0..c44c8cc797 100644 --- a/src/models/project.ts +++ b/src/models/project.ts @@ -3,11 +3,11 @@ // SPDX-License-Identifier: AGPL-3.0 import { Resource as R } from "./resource"; -import { GroupResource } from "./group"; +import { GroupResource, GroupClass } from "./group"; export interface Project extends R { } export interface ProjectResource extends GroupResource { - groupClass: "project"; + groupClass: GroupClass.Project; }