-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GEN-1983 : Feat - Support Tag Asset Page (#18505)
* Feat : Support bulk adding tag to Assets * remove warnings * add apis for assets remove * Fix: Add tag page (#18461) * add tag page which all Assets * update as per feedbacks * update as per feedbacks * add divider in header badge * remove styling * update permission and refactoring code * updated as per comments * fix sonar cloud issues * add delete asset functionality * refactor entityTypeString * made the top bar fixed to top * add tests for tag page * fix check failures issue * fix tag page check failure * fix flaky test issue * add tag page tests * update the add asset test * update playwright tests * add right panel in tag page * updated as per feedbacks * remove usage test * updated as per feedbacks --------- * Backend: make bulkAssets api async * Backend: limit bulkAssets api async to Tag Assets page * Update Tag page Assets API (#18622) * create branch * update add asset API * add websocket on tags page --------- Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com> Co-authored-by: karanh37 <karanh37@gmail.com> * add failed case for socket operation --------- Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com> Co-authored-by: Sweta Agarwalla <105535990+sweta1308@users.noreply.github.com> Co-authored-by: karanh37 <karanh37@gmail.com>
- Loading branch information
1 parent
66c253e
commit 853bbc2
Showing
36 changed files
with
1,740 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...adata-service/src/main/java/org/openmetadata/service/util/BulkAssetsOperationMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.openmetadata.service.util; | ||
|
||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
import org.openmetadata.schema.type.api.BulkOperationResult; | ||
|
||
@NoArgsConstructor | ||
public class BulkAssetsOperationMessage { | ||
@Getter @Setter private String jobId; | ||
@Getter @Setter private String status; | ||
@Getter @Setter private BulkOperationResult result; | ||
@Getter @Setter private String error; | ||
|
||
public BulkAssetsOperationMessage( | ||
String jobId, String status, BulkOperationResult result, String error) { | ||
this.jobId = jobId; | ||
this.status = status; | ||
this.result = result; | ||
this.error = error; | ||
} | ||
} |
Oops, something went wrong.