You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/apps/Altinn.AccessManagement/src/Altinn.AccessManagement/Controllers/SystemUserClientDelegationController.cs
varuser=(awaitentityRepository.Get(userId))??thrownewException(string.Format("Party not found '{0}'",userId));
189
+
varuser=(awaitentityRepository.Get(userId))??thrownewException(string.Format("Party not found '{0}' for user",userId));
190
190
191
191
// Find Facilitator : Regnskapsfolk
192
-
varfacilitator=(awaitentityRepository.Get(facilitatorPartyId))??thrownewException(string.Format("Party not found '{0}'",facilitatorPartyId));
192
+
varfacilitator=(awaitentityRepository.Get(facilitatorPartyId))??thrownewException(string.Format("Party not found '{0}' for facilitator",facilitatorPartyId));
193
193
194
194
// Find admin role : Tilgangstyrer eller KlientAdmin
195
195
196
196
// Find Agent Role : AGENT
197
197
varagentRole=awaitGetRole(request.AgentRole)??thrownewException(string.Format("Role not found '{0}'",request.AgentRole));
198
198
199
199
// Find Agent
200
-
varagent=awaitGetOrCreateEntity(request.AgentId,request.AgentName,request.AgentId.ToString(),"Systembruker","System")??thrownewException(string.Format("Could not find or create '{0}'",request.AgentId));
200
+
varagent=awaitGetOrCreateEntity(request.AgentId,request.AgentName,request.AgentId.ToString(),"Systembruker","System")??thrownewException(string.Format("Could not find or create party '{0}' for agent",request.AgentId));
201
201
202
202
// Find ClientId : Bakeriet
203
-
varclient=(awaitentityRepository.Get(request.ClientId))??thrownewException(string.Format("Party not found '{0}'",request.ClientId));
203
+
varclient=(awaitentityRepository.Get(request.ClientId))??thrownewException(string.Format("Party not found '{0}' for client",request.ClientId));
0 commit comments