Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
recurring_events
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
recurring_events
Merge requests
!61
Attempt to fix orphaned registrants and provide UI to clean up
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Attempt to fix orphaned registrants and provide UI to clean up
issue/recurring_events-3315836:3315836-deleting-old-events
into
2.0.x
Overview
0
Commits
1
Pipelines
0
Changes
9
Merged
Attempt to fix orphaned registrants and provide UI to clean up
Owen Bush
requested to merge
issue/recurring_events-3315836:3315836-deleting-old-events
into
2.0.x
Nov 25, 2022
Overview
0
Commits
1
Pipelines
0
Changes
9
0
0
Merge request reports
Compare
2.0.x
version 3
3382b311
Jan 20, 2023
version 2
e9e0fb15
Jan 14, 2023
version 1
cf05e35c
Nov 25, 2022
2.0.x (base)
and
latest version
latest version
3382b311
1 commit,
Jan 20, 2023
version 3
3382b311
1 commit,
Jan 20, 2023
version 2
e9e0fb15
1 commit,
Jan 14, 2023
version 1
cf05e35c
1 commit,
Nov 25, 2022
9 files
+
395
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
modules/recurring_events_registration/src/Entity/Registrant.php
+
1
−
1
View file @ 3382b311
Edit in single-file editor
Open in Web IDE
Show full file
@@ -377,7 +377,7 @@ class Registrant extends EditorialContentEntityBase implements RegistrantInterfa
*/
protected
function
urlRouteParameters
(
$rel
)
{
$uri_route_parameters
=
parent
::
urlRouteParameters
(
$rel
);
$uri_route_parameters
[
'eventinstance'
]
=
$this
->
getEventInstance
()
->
id
();
$uri_route_parameters
[
'eventinstance'
]
=
$this
->
getEventInstance
()
?
$this
->
getEventInstance
()
->
id
()
:
0
;
$uri_route_parameters
[
'registrant'
]
=
$this
->
id
();
if
(
$rel
==
'anon-edit-form'
||
$rel
==
'anon-delete-form'
)
{
$uri_route_parameters
[
'uuid'
]
=
$this
->
uuid
->
value
;
Loading