Browse Source

Update modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Tags/TagManager.cs

pull/7848/head
Enis Necipoglu 6 years ago
committed by GitHub
parent
commit
f5917ec769
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Tags/TagManager.cs

5
modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Tags/TagManager.cs

@ -50,8 +50,7 @@ namespace Volo.CmsKit.Tags
new Tag(id, entityType, name, CurrentTenant.Id);
}
public virtual async Task<Tag> UpdateAsync(Guid id,
[NotNull] string name)
public virtual async Task<Tag> UpdateAsync(Guid id, [NotNull] string name)
{
Check.NotNullOrEmpty(name, nameof(name));
@ -68,4 +67,4 @@ namespace Volo.CmsKit.Tags
return tag;
}
}
}
}

Loading…
Cancel
Save