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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
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; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|