Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/10 15:47:46 (14 years ago)
Author:
cneumuel
Message:

renamed all database entities from "Client" to "Slave" (#1157)
made slave-heartbeats synchronous, also they send HBs when timetable disallows them to calculate. they will appear on the server as Idle bis IsAllowedToCalculate will be false (#1159)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/Authorization/HivePermissionManager.cs

    r4263 r4267  
    9393    private bool CheckPermissionHelper(Guid sessionId, Guid actionId, Guid entityId) {
    9494      if (entityId == Guid.Empty) return true;
    95       IList<ClientGroupDto> groups = slaveManager.GetAllGroupsOfResource(entityId).Obj;
    96       foreach (ClientGroupDto group in groups)
     95      IList<SlaveGroupDto> groups = slaveManager.GetAllGroupsOfResource(entityId).Obj;
     96      foreach (SlaveGroupDto group in groups)
    9797        if (CheckPermission(sessionId, actionId, group.Id)) return true;
    9898      return false;
Note: See TracChangeset for help on using the changeset viewer.