Changeset 2091 for trunk/sources/HeuristicLab.Hive.Server.Core/3.2
- Timestamp:
- 06/25/09 12:19:37 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/Authorization/HivePermissionManager.cs
r2067 r2091 52 52 //check if user has 'xxx.Project' permission 53 53 if (p != null) 54 //TODO: Test auf NULL von Project! 54 55 if (CheckPermission(sessionID, p.Id, jobManager.GetJobById(entityID).Obj.Project.Id)) return; 55 56 … … 60 61 if (CheckPermission(sessionID, p.Id, jobManager.GetJobById(entityID).Obj.UserId)) return; 61 62 //throw an exception when user access fails 62 throw new PermissionException(policyName);63 //throw new PermissionException(policyName); 63 64 } 64 65
Note: See TracChangeset
for help on using the changeset viewer.