Skip to content

Commit

Permalink
fix: remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Aug 30, 2024
1 parent 6d30625 commit f7796ac
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/api/agileLive/ingest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,21 +127,3 @@ export async function getSourceThumbnail(
}
throw await response.json();
}

export async function getIngestSources(uuid: string) {
const response = await fetch(
new URL(
AGILE_BASE_API_PATH + `/ingests/${uuid}/sources?expand=true`,
process.env.AGILE_URL
),
{
headers: {
authorization: getAuthorizationHeader()
}
}
);
if (response.ok) {
return response.json();
}
throw await response.json();
}

0 comments on commit f7796ac

Please sign in to comment.