Skip to content

Commit

Permalink
Merge pull request #380 from whdalsrnt/master
Browse files Browse the repository at this point in the history
feat: add data_table_id field to widget for cloning widget
  • Loading branch information
whdalsrnt authored Jul 20, 2024
2 parents f77d4f5 + 8126f21 commit 30d37f3
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 30d37f3

Please sign in to comment.