diff --git a/components/dashboard/src/admin/Settings.tsx b/components/dashboard/src/admin/Settings.tsx index 2ef2dd7a40fff7..e9dccc3664e065 100644 --- a/components/dashboard/src/admin/Settings.tsx +++ b/components/dashboard/src/admin/Settings.tsx @@ -1,3 +1,9 @@ +/** + * Copyright (c) 2022 Gitpod GmbH. All rights reserved. + * Licensed under the GNU Affero General Public License (AGPL). + * See License-AGPL.txt in the project root for license information. + */ + import { AdminGetListResult, WorkspaceAndInstance } from "@gitpod/gitpod-protocol"; import { useState } from "react"; import CheckBox from "../components/CheckBox"; diff --git a/components/server/src/auth/rate-limiter.ts b/components/server/src/auth/rate-limiter.ts index 142764beb427d6..fa436efcf2ddb8 100644 --- a/components/server/src/auth/rate-limiter.ts +++ b/components/server/src/auth/rate-limiter.ts @@ -135,6 +135,8 @@ function getConfig(config: RateLimiterConfig): RateLimiterConfig { "adminForceStopWorkspace": { group: "default", points: 1 }, "adminRestoreSoftDeletedWorkspace": { group: "default", points: 1 }, "adminSetLicense": { group: "default", points: 1 }, + "adminSettingsGetTelemetry": { group: "default", points: 1 }, + "adminSettingsSetTelemetry": { group: "default", points: 1 }, "validateLicense": { group: "default", points: 1 }, "getLicenseInfo": { group: "default", points: 1 },