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 7export interface BlockedRepository { 8 id: number; 9 urlRegexp: string; 10 blockUser: boolean; 11 blockFreeUsage: boolean; 12 createdAt: string; 13 updatedAt: string; 14} 15 16