Skip to content

Commit

Permalink
Merge pull request #819 from gcoxmoz/IAM-1267
Browse files Browse the repository at this point in the history
Remove `expire_access_when_unused_after`, IAM-1267
  • Loading branch information
dividehex authored Aug 16, 2024
2 parents c714189 + 9a37477 commit a97f037
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [1.0.1] - 2018-05-24
### Added
- Support for `expire_access_when_unused_after`
- Support for `expire_access_when_unused_after` (removed after 2024)

## [1.0.0] - 2018-02-26
### Added
Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ This is a list of available fields.
authorized_users: []
authorized_groups: []
# How many seconds before a user who has logged into this RP is denied access. The timer reset for each login,
# thus access is only denied if you haven't logged in at all for this period of time. Is it enforced by the Access
# Provider
expire_access_when_unused_after: 7776000
## Mappings to standard levels (https://infosec.mozilla.org/guidelines/risk/standard_levels) AAL
## values below are available at the IAM well-known endpoint
## (https://auth.mozilla.org/.well-known/mozilla-iam)
Expand Down
4 changes: 0 additions & 4 deletions tests/test_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,6 @@ def test_each_has_required_keys(self):
assert app['display'] is not None
assert isinstance(app['display'], bool)
####################################################################################
if 'expire_access_when_unused_after' in app:
assert isinstance(app['expire_access_when_unused_after'], int)
assert app['expire_access_when_unused_after'] > 0
####################################################################################
if 'vanity_url' in app:
# deliberate 'test-then-get' to detect a case of "key but no value" as
# opposed to .get() returning a None.
Expand Down

0 comments on commit a97f037

Please sign in to comment.