Skip to content

Commit

Permalink
feat: add remoteName and tagName to mfe (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras authored Feb 1, 2024
1 parent 5515a6b commit ad8f5ae
Show file tree
Hide file tree
Showing 8 changed files with 1,253 additions and 1,207 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,10 @@ public class Microfrontend extends TraceableEntity {
@OneToMany(cascade = { REMOVE, REFRESH, PERSIST, MERGE }, fetch = LAZY, orphanRemoval = true)
@JoinColumn(name = "MICROFRONTEND_ID")
private Set<UIEndpoint> endpoints = new HashSet<>();

@Column(name = "REMOTE_NAME")
private String remoteName;

@Column(name = "TAG_NAME")
private String tagName;
}
Loading

0 comments on commit ad8f5ae

Please sign in to comment.