Skip to content

Commit

Permalink
Add CreateGroupKeyAsync in UserIdUserGroupContributor
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Jul 12, 2024
1 parent 07003ed commit 7d16276
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>1.0.0-preview.11</Version>
<Version>1.0.0-preview.12</Version>
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
<AbpProjectType>module</AbpProjectType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ public virtual async Task HandleEventAsync(EntityCreatedEto<UserEto> eventData)
{
await UpdateAsync(eventData.Entity.Id);
}

public virtual Task<string> CreateGroupKeyAsync(Guid userId) => CreateGroupKeyAsync(userId.ToString());
}

0 comments on commit 7d16276

Please sign in to comment.