Remove incorrect and unnecessary field from data model (#1659)

This commit is contained in:
Charis Kyriakou
2022-10-26 16:46:42 +01:00
committed by GitHub
parent 8521138bce
commit 158bebd03f
2 changed files with 0 additions and 2 deletions

View File

@@ -21,7 +21,6 @@ export type VariantAnalysisQueryLanguage =
export interface VariantAnalysis {
id: number,
controller_repo: Repository,
actor_id: number,
query_language: VariantAnalysisQueryLanguage,
query_pack_url: string,
created_at: string,

View File

@@ -25,7 +25,6 @@ export function createMockApiResponse(
full_name: 'github/pickles',
private: false,
},
actor_id: faker.datatype.number(),
query_language: VariantAnalysisQueryLanguage.Javascript,
query_pack_url: 'https://example.com/foo',
created_at: faker.date.recent().toISOString(),