|
|
|
@ -3,7 +3,7 @@ |
|
|
|
import { ModalContent, notifications, Body, Layout } from "@budibase/bbui" |
|
|
|
import analytics, { Events } from "analytics" |
|
|
|
import IntegrationConfigForm from "components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte" |
|
|
|
import { datasources } from "stores/backend" |
|
|
|
import { datasources, tables } from "stores/backend" |
|
|
|
import { IntegrationNames } from "constants" |
|
|
|
|
|
|
|
export let integration |
|
|
|
@ -32,6 +32,8 @@ |
|
|
|
// Create datasource |
|
|
|
const resp = await datasources.save(datasource, datasource.plus) |
|
|
|
|
|
|
|
// update the tables incase data source plus |
|
|
|
await tables.fetch() |
|
|
|
await datasources.select(resp._id) |
|
|
|
$goto(`./datasource/${resp._id}`) |
|
|
|
notifications.success(`Datasource updated successfully.`) |
|
|
|
|