Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/gitpod-protocol/src/blocked-repositories-protocol.ts
2496 views
1
/**
2
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
export interface BlockedRepository {
8
id: number;
9
urlRegexp: string;
10
blockUser: boolean;
11
blockFreeUsage: boolean;
12
createdAt: string;
13
updatedAt: string;
14
}
15
16