-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NEW Log out all devices for members with no admin access
- Loading branch information
1 parent
fb06ba6
commit 1535bc2
Showing
5 changed files
with
166 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,52 @@ | ||
SilverStripe\Security\Group: | ||
editor: | ||
Title: Editor | ||
website: | ||
Title: WebsiteUser | ||
|
||
SilverStripe\Security\Permission: | ||
editor: | ||
Code: CMS_ACCESS_AssetAdmin | ||
Group: =>SilverStripe\Security\Group.editor | ||
website: | ||
Code: CUSTOM_PERMISSION_LoginToTheWebsiteFrontend | ||
Group: =>SilverStripe\Security\Group.website | ||
|
||
SilverStripe\Security\Member: | ||
member1: | ||
FirstName: 'Andre' | ||
Email: '[email protected]' | ||
admin_access: | ||
FirstName: 'AdminAccess' | ||
Email: '[email protected]' | ||
Groups: =>SilverStripe\Security\Group.editor | ||
no_admin_access: | ||
FirstName: 'NoAdminAccess' | ||
Email: '[email protected]' | ||
Groups: =>SilverStripe\Security\Group.website | ||
|
||
SilverStripe\SessionManager\Model\LoginSession: | ||
x1: | ||
LastAccessed: '2003-02-15 10:00:00' | ||
IPAddress: '192.168.0.1' | ||
Member: =>SilverStripe\Security\Member.member1 | ||
|
||
admin_access_device_a: | ||
UserAgent: 'Admin Access Device A' | ||
LastAccessed: '2003-02-15 10:00:00' | ||
IPAddress: '192.168.0.1' | ||
Member: =>SilverStripe\Security\Member.admin_access | ||
admin_access_device_b: | ||
UserAgent: 'Admin Access Device B' | ||
LastAccessed: '2003-02-15 10:00:00' | ||
IPAddress: '192.168.0.1' | ||
Member: =>SilverStripe\Security\Member.admin_access | ||
no_admin_access_device_a: | ||
UserAgent: 'No Admin Access Device A' | ||
LastAccessed: '2003-02-15 10:00:00' | ||
IPAddress: '192.168.0.1' | ||
Member: =>SilverStripe\Security\Member.no_admin_access | ||
no_admin_access_device_b: | ||
UserAgent: 'No Admin Access Device B' | ||
LastAccessed: '2003-02-15 10:00:00' | ||
IPAddress: '192.168.0.1' | ||
Member: =>SilverStripe\Security\Member.no_admin_access |