Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Action
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
Action
Merge requests
!86
BREAKING: Changes to email change confirmation URL
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
BREAKING: Changes to email change confirmation URL
Hotfix/2130-uiv2ContactChange
into
uiv2
Overview
0
Commits
2
Pipelines
3
Changes
1
Merged
Petar Hristov
requested to merge
Hotfix/2130-uiv2ContactChange
into
uiv2
3 years ago
Overview
0
Commits
2
Pipelines
3
Changes
1
Expand
coscine/issues#2130
Edited
3 years ago
by
Petar Hristov
0
0
Merge request reports
Compare
uiv2
version 2
90207490
3 years ago
version 1
6d837f78
3 years ago
uiv2 (base)
and
latest version
latest version
eb2afcbd
2 commits,
3 years ago
version 2
90207490
1 commit,
3 years ago
version 1
6d837f78
3 commits,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Action/Implementations/ContactChange/NotificationAction.cs
+
1
−
1
Options
@@ -15,7 +15,7 @@ namespace Coscine.Action.Implementations.ContactChange
if
(!
contactChangeEventArgs
.
SilentMode
)
{
var
baseURL
=
$"
{
contactChangeEventArgs
.
Configuration
.
GetStringAndWait
(
"coscine/local/api/additional/url"
)}
"
;
var
completeURL
=
$"
{
baseURL
}
/
coscine/apps/tokenconfirmation/?
token=
{
contactChangeEventArgs
.
ContactInformation
.
ConfirmationToken
}
"
;
var
completeURL
=
$"
{
baseURL
}
/
?email
token=
{
contactChangeEventArgs
.
ContactInformation
.
ConfirmationToken
}
"
;
var
args
=
new
JObject
()
{
[
"Args"
]
=
new
JObject
()
Loading