Skip to content

Commit

Permalink
add method comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed May 16, 2024
1 parent 1fb88d0 commit a3a58d6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions uSync.BackOffice/SyncHandlers/Handlers/RelationTypeHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,12 @@ protected override bool ShouldImport(XElement node, HandlerSettings config)
protected override string GetItemName(IRelationType item)
=> item.Name;

/// <inheritdoc/>
protected override string GetItemFileName(IRelationType item)
/// <inheritdoc/>
protected override string GetItemFileName(IRelationType item)
=> GetItemAlias(item).ToSafeAlias(shortStringHelper);

protected override IEnumerable<IEntity> GetChildItems(int parent)
/// <inheritdoc/>
protected override IEnumerable<IEntity> GetChildItems(int parent)
{
if (parent == -1)
return relationService.GetAllRelationTypes();
Expand Down

0 comments on commit a3a58d6

Please sign in to comment.