mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-01 13:13:10 +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())
|
.withHref(team.getHref())
|
||||||
.withFullyQualifiedName(team.getFullyQualifiedName())
|
.withFullyQualifiedName(team.getFullyQualifiedName())
|
||||||
.withIsJoinable(team.getIsJoinable())
|
.withIsJoinable(team.getIsJoinable())
|
||||||
.withChildren(null);
|
.withChildren(null)
|
||||||
|
.withDescription(team.getDescription());
|
||||||
}
|
}
|
||||||
|
|
||||||
private TeamHierarchy deepCopy(TeamHierarchy team) {
|
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.",
|
"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"
|
"$ref": "../../type/basic.json#/definitions/entityName"
|
||||||
},
|
},
|
||||||
|
"description": {
|
||||||
|
"description": "Description of the team.",
|
||||||
|
"$ref": "../../type/basic.json#/definitions/markdown"
|
||||||
|
},
|
||||||
"fullyQualifiedName": {
|
"fullyQualifiedName": {
|
||||||
"description": "FullyQualifiedName same as `name`.",
|
"description": "FullyQualifiedName same as `name`.",
|
||||||
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
|
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user