Skip to content

Commit

Permalink
remove parameters for now
Browse files Browse the repository at this point in the history
  • Loading branch information
hughhhh committed May 14, 2021
1 parent 182eb3c commit 5f30cee
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions superset-frontend/src/views/CRUD/data/database/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ type DatabaseUser = {
last_name: string;
};

type DatabaseParameters = {
database: string;
engine: string;
host: string;
password?: string;
port: number;
query: Object;
username: string;
};
// type DatabaseParameters = {
// database: string;
// engine: string;
// host: string;
// password?: string;
// port: number;
// query: Object;
// username: string;
// };

export type DatabaseObject = {
// Connection + general
Expand All @@ -40,7 +40,7 @@ export type DatabaseObject = {
created_by?: null | DatabaseUser;
changed_on_delta_humanized?: string;
changed_on?: string;
parameters?: DatabaseParameters;
// parameters?: DatabaseParameters;

// Performance
cache_timeout?: string;
Expand Down

0 comments on commit 5f30cee

Please sign in to comment.