Skip to content

Commit

Permalink
feat: add data_table_id field to widget for cloning widget
Browse files Browse the repository at this point in the history
Signed-off-by: Jongmin Kim <[email protected]>
  • Loading branch information
whdalsrnt committed Jul 20, 2024
1 parent f77d4f5 commit 8126f21
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions proto/spaceone/api/dashboard/v1/private_widget.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,11 @@ message CreatePrivateWidgetRequest {
// +optional
google.protobuf.Struct options = 7;
// +optional
repeated google.protobuf.Struct data_tables = 8;
int32 data_table_id = 8;
// +optional
google.protobuf.Struct tags = 9;
repeated google.protobuf.Struct data_tables = 9;
// +optional
google.protobuf.Struct tags = 10;
}

message UpdatePrivateWidgetRequest {
Expand Down
6 changes: 4 additions & 2 deletions proto/spaceone/api/dashboard/v1/public_widget.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,11 @@ message CreatePublicWidgetRequest {
// +optional
google.protobuf.Struct options = 7;
// +optional
repeated google.protobuf.Struct data_tables = 8;
int32 data_table_id = 8;
// +optional
google.protobuf.Struct tags = 9;
repeated google.protobuf.Struct data_tables = 9;
// +optional
google.protobuf.Struct tags = 10;
}

message UpdatePublicWidgetRequest {
Expand Down

0 comments on commit 8126f21

Please sign in to comment.