Skip to content

Commit

Permalink
fix signalr teams
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-tspencer committed Apr 16, 2024
1 parent 425e3be commit 1ba95f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cite.Api/Cite.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<Version>1.5.2</Version>
<Version>1.5.3-rc1</Version>
<TargetFramework>net6.0</TargetFramework>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<NoWarn>CS1591</NoWarn>
Expand Down
2 changes: 2 additions & 0 deletions Cite.Api/Infrastructure/EventHandlers/TeamHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ protected string[] GetGroups(TeamEntity teamEntity)
var groupIds = new List<string>();
// add the team
groupIds.Add(teamEntity.Id.ToString());
// add the evaluation
groupIds.Add(teamEntity.EvaluationId.ToString());
// the admin data group gets everything
groupIds.Add(MainHub.ADMIN_DATA_GROUP);

Expand Down

0 comments on commit 1ba95f0

Please sign in to comment.