mirror of
https://github.com/makeplane/plane.git
synced 2026-06-13 19:19:54 +00:00
373f149fdb
* refactor: migrate types from apps/web to @plane/types * [WEB-238] resolved lint errors * [WEB-238] Resolved coderabbit comments
15 lines
413 B
TypeScript
15 lines
413 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import type { TIssueRelationTypes } from "@plane/types";
|
|
|
|
export const REVERSE_RELATIONS: { [key in TIssueRelationTypes]: TIssueRelationTypes } = {
|
|
blocked_by: "blocking",
|
|
blocking: "blocked_by",
|
|
relates_to: "relates_to",
|
|
duplicate: "duplicate",
|
|
};
|