mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-31 12:39:01 +00:00
feat(server): description support for team hierarchy (#12638)
This commit is contained in:
parent
9ed9fb172e
commit
098625c549
@ -245,7 +245,8 @@ public class TeamRepository extends EntityRepository<Team> {
|
||||
.withHref(team.getHref())
|
||||
.withFullyQualifiedName(team.getFullyQualifiedName())
|
||||
.withIsJoinable(team.getIsJoinable())
|
||||
.withChildren(null);
|
||||
.withChildren(null)
|
||||
.withDescription(team.getDescription());
|
||||
}
|
||||
|
||||
private TeamHierarchy deepCopy(TeamHierarchy team) {
|
||||
|
@ -26,6 +26,10 @@
|
||||
"description": "A unique name of the team typically the team ID from an identity provider. Example - group Id from LDAP.",
|
||||
"$ref": "../../type/basic.json#/definitions/entityName"
|
||||
},
|
||||
"description": {
|
||||
"description": "Description of the team.",
|
||||
"$ref": "../../type/basic.json#/definitions/markdown"
|
||||
},
|
||||
"fullyQualifiedName": {
|
||||
"description": "FullyQualifiedName same as `name`.",
|
||||
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
|
||||
|
Loading…
x
Reference in New Issue
Block a user