Skip to content

Commit

Permalink
Merge pull request #18272 from jmchilton/oauth2_user_file_sources_dev
Browse files Browse the repository at this point in the history
Allow OAuth 2.0 user defined file sources (w/Dropbox integration)
  • Loading branch information
itisAliRH authored Oct 15, 2024
2 parents 99ae337 + 946bded commit 0dbc039
Show file tree
Hide file tree
Showing 94 changed files with 3,061 additions and 556 deletions.
5 changes: 5 additions & 0 deletions client/src/api/configTemplates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ export type SecretData = CreateInstancePayload["secrets"];
export type PluginAspectStatus = components["schemas"]["PluginAspectStatus"];
export type PluginStatus = components["schemas"]["PluginStatus"];

export type UpgradeInstancePayload = components["schemas"]["UpgradeInstancePayload"];
export type TestUpgradeInstancePayload = components["schemas"]["TestUpgradeInstancePayload"];
export type UpdateInstancePayload = components["schemas"]["UpdateInstancePayload"];
export type TestUpdateInstancePayload = components["schemas"]["TestUpdateInstancePayload"];

export interface TemplateSummary {
description: string | null;
hidden?: boolean;
Expand Down
4 changes: 2 additions & 2 deletions client/src/api/objectStores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export async function getObjectStoreDetails(id: string) {
if (id.startsWith("user_objects://")) {
const userObjectStoreId = id.substring("user_objects://".length);

const { data, error } = await GalaxyApi().GET("/api/object_store_instances/{user_object_store_id}", {
params: { path: { user_object_store_id: userObjectStoreId } },
const { data, error } = await GalaxyApi().GET("/api/object_store_instances/{uuid}", {
params: { path: { uuid: userObjectStoreId } },
});

if (error) {
Expand Down
Loading

0 comments on commit 0dbc039

Please sign in to comment.