Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-perun
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp-module-perun
Merge requests
!340
feat: user_id to auth event logging db table
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: user_id to auth event logging db table
xpavlic/PRX-401/auth_event_logging_userid
into
main
Overview
1
Commits
1
Pipelines
2
Changes
2
Merged
Jan Pavlíček
requested to merge
xpavlic/PRX-401/auth_event_logging_userid
into
main
1 year ago
Overview
1
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
fb17202b
1 commit,
1 year ago
2 files
+
5
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
lib/Auth/Process/AuthEventLogging.php
+
3
−
1
Options
@@ -7,6 +7,7 @@ namespace SimpleSAML\Module\perun\Auth\Process;
use
DateTime
;
use
SimpleSAML\Auth\ProcessingFilter
;
use
SimpleSAML\Configuration
;
use
SimpleSAML\Module\perun\PerunConstants
;
use
SimpleSAML\Session
;
use
SimpleSAML\Logger
;
use
SimpleSAML\Error\Exception
;
@@ -156,7 +157,8 @@ class AuthEventLogging extends ProcessingFilter
'requested_acrs_id'
=>
$requestedACRsTableId
,
'upstream_acrs_id'
=>
$upstreamACRsTableId
,
'user_agent_raw_id'
=>
$userAgentRawTableId
,
'user_agent_id'
=>
$userAgentTableId
'user_agent_id'
=>
$userAgentTableId
,
'user_id'
=>
$request
[
PerunConstants
::
PERUN
][
PerunConstants
::
USER
]
->
getId
(),
]);
}
Loading