1
0
Fork 0
mirror of synced 2024-07-09 00:06:05 +12:00

Add feature flags

This commit is contained in:
Adria Navarro 2023-06-19 14:02:27 +01:00
parent 7a4eb3113d
commit d337c52adf
2 changed files with 2 additions and 0 deletions

View file

@ -60,6 +60,7 @@ const SCHEMA: Integration = {
features: {
[DatasourceFeature.CONNECTION_CHECKING]: true,
[DatasourceFeature.FETCH_TABLE_NAMES]: true,
[DatasourceFeature.EXPORT_SCHEMA]: true,
},
datasource: {
host: {

View file

@ -76,6 +76,7 @@ export enum FilterType {
export enum DatasourceFeature {
CONNECTION_CHECKING = "connection",
FETCH_TABLE_NAMES = "fetch_table_names",
EXPORT_SCHEMA = "export_schema",
}
export interface StepDefinition {