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
{{ message }}
This repository was archived by the owner on Sep 19, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
[Added]
6
6
- List of services is displayed as JSON if parameter 'output=json' is set in URL
7
7
8
+
[Fixed]
9
+
- Fixed the problem where LDAP calls RPC method in PerunIdentity filter
10
+
8
11
## [v2.1.0]
9
12
[Added]
10
13
- Added new atribute in PerunIdentity process filter with list of Services identifier's for which we don't want to show page with information, that the user will be redirected to other page
SimpleSAML\Logger::info('Member status for perun user with identity/ies: ' . implode(',', $uids) . ' was not VALID and it is not possible to get more info (RPC is not working)');
433
+
$this->unauthorized($request);
434
+
}
435
+
}
436
+
437
+
if (is_null($user) || is_null($status) || $status === sspmod_perun_model_Member::EXPIRED) {
430
438
if (is_null($user)) {
431
439
SimpleSAML\Logger::info('Perun user with identity/ies: '. implode(',', $uids).' has NOT been found. He is being redirected to register.');
432
-
}
433
-
elseif (is_null($member)) {
440
+
} elseif (is_null($status)) {
434
441
SimpleSAML\Logger::info('Perun user with identity/ies: '. implode(',', $uids).' is NOT member in vo with short name ' . $this->voShortName . '(default VO). He is being redirected to register.');
435
-
}
436
-
else {
442
+
} else {
437
443
SimpleSAML\Logger::info('Member status for perun user with identity/ies: '. implode(',', $uids).' was expired. He is being redirected to register.');
0 commit comments