diff --git a/apps/api/plane/app/views/api/__init__.py b/apps/api/plane/app/views/api/__init__.py index 6736ced5e8..e4f0d480d4 100644 --- a/apps/api/plane/app/views/api/__init__.py +++ b/apps/api/plane/app/views/api/__init__.py @@ -1,3 +1,7 @@ +# Copyright (c) 2023-present Plane Software, Inc. and contributors +# SPDX-License-Identifier: AGPL-3.0-only +# See the LICENSE file for details. + from .base import ApiTokenEndpoint from .service import ServiceApiTokenEndpoint from .workspace import WorkspaceAPITokenEndpoint diff --git a/apps/api/plane/app/views/api/service.py b/apps/api/plane/app/views/api/service.py index c22514902e..93a03a9951 100644 --- a/apps/api/plane/app/views/api/service.py +++ b/apps/api/plane/app/views/api/service.py @@ -1,3 +1,7 @@ +# Copyright (c) 2023-present Plane Software, Inc. and contributors +# SPDX-License-Identifier: AGPL-3.0-only +# See the LICENSE file for details. + # Python import from uuid import uuid4 diff --git a/apps/api/plane/app/views/api/workspace.py b/apps/api/plane/app/views/api/workspace.py index a0a244eb85..71178d9350 100644 --- a/apps/api/plane/app/views/api/workspace.py +++ b/apps/api/plane/app/views/api/workspace.py @@ -1,3 +1,7 @@ +# Copyright (c) 2023-present Plane Software, Inc. and contributors +# SPDX-License-Identifier: AGPL-3.0-only +# See the LICENSE file for details. + # Python import from typing import Optional from uuid import uuid4 diff --git a/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx b/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx index a5cd10dc71..dd7231fc83 100644 --- a/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx +++ b/apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/access-tokens/page.tsx @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2023-present Plane Software, Inc. and contributors + * SPDX-License-Identifier: AGPL-3.0-only + * See the LICENSE file for details. + */ + import { useState } from "react"; import { observer } from "mobx-react"; import useSWR from "swr"; diff --git a/packages/services/src/developer/workspace-api-token.service.ts b/packages/services/src/developer/workspace-api-token.service.ts index a60b05a068..3d3fb1edf8 100644 --- a/packages/services/src/developer/workspace-api-token.service.ts +++ b/packages/services/src/developer/workspace-api-token.service.ts @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2023-present Plane Software, Inc. and contributors + * SPDX-License-Identifier: AGPL-3.0-only + * See the LICENSE file for details. + */ + import { API_BASE_URL } from "@plane/constants"; import type { IApiToken } from "@plane/types"; import { APIService } from "../api.service";