diff --git a/Cite.Api/Cite.Api.csproj b/Cite.Api/Cite.Api.csproj index 5b49e12..6060824 100755 --- a/Cite.Api/Cite.Api.csproj +++ b/Cite.Api/Cite.Api.csproj @@ -1,7 +1,7 @@  - 1.5.2 + 1.5.3-rc1 net6.0 bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml CS1591 diff --git a/Cite.Api/Infrastructure/EventHandlers/TeamHandler.cs b/Cite.Api/Infrastructure/EventHandlers/TeamHandler.cs index 0d7d656..51b5396 100644 --- a/Cite.Api/Infrastructure/EventHandlers/TeamHandler.cs +++ b/Cite.Api/Infrastructure/EventHandlers/TeamHandler.cs @@ -40,6 +40,8 @@ protected string[] GetGroups(TeamEntity teamEntity) var groupIds = new List(); // 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);