Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit bec631e

Browse files
author
Billy Clark
committed
code review feedback
1 parent fb795cb commit bec631e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
start:
2+
docker-compose pull
23
docker-compose up -d
34

45
errors:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ If configured, an alert will be shown to the user filled with the content of tha
116116
4. Click **Test configured authentication sources**
117117
5. Click **hub-discovery**
118118
6. Click **idp2**
119-
7. Login as an "about to expire" user: `username=`**near_future** `password=`**b**
119+
7. Login as an "about to expire" user: `username=`**near_future** `password=`**a**
120120
8. Click **Later**
121121
9. Click **Logout**
122122

@@ -127,7 +127,7 @@ If configured, an alert will be shown to the user filled with the content of tha
127127
4. Click **Test configured authentication sources**
128128
5. Click **hub-discovery**
129129
6. Click **idp2**
130-
7. Login as an "expired" user: `username=`**already_past** `password=`**c**
130+
7. Login as an "expired" user: `username=`**already_past** `password=`**a**
131131

132132
### Multi-factor authentication (MFA) functionality
133133
#### Nag about missing MFA setup

development/idp2/authsources.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
gmdate('YmdHis\Z', strtotime('+6 months')), // Distant future
1515
],
1616
],
17-
'near_future:b' => [
17+
'near_future:a' => [
1818
'eduPersonPrincipalName' => ['[email protected]'],
1919
'eduPersonTargetID' => ['22222222-2222-2222-2222-222222222222'],
2020
'sn' => ['Future'],
@@ -26,7 +26,7 @@
2626
gmdate('YmdHis\Z', strtotime('+1 day')), // Very soon
2727
],
2828
],
29-
'already_past:c' => [
29+
'already_past:a' => [
3030
'eduPersonPrincipalName' => ['[email protected]'],
3131
'eduPersonTargetID' => ['33333333-3333-3333-3333-333333333333'],
3232
'sn' => ['Past'],

development/idp2/saml20-idp-hosted.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
'class' => 'expirychecker:ExpiryDate',
1212
'accountNameAttr' => 'cn',
1313
'expiryDateAttr' => 'schacExpiryDate',
14-
'changePwdUrl' => Env::get('CHANGE_PWD_URL'),
14+
'passwordChangeUrl' => Env::get('PASSWORD_CHANGE_URL'),
1515
'warnDaysBefore' => 14,
1616
'dateFormat' => 'Y-m-d',
1717
'loggerClass' => Psr3SamlLogger::class,

0 commit comments

Comments
 (0)