Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Project
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
GitLab 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
apis
Project
Merge requests
!147
Sprint/2021 09
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Sprint/2021 09
Sprint/2021-09
into
master
Overview
0
Commits
2
Pipelines
2
Changes
1
Merged
Sprint/2021 09
Marcel Nellesen
requested to merge
Sprint/2021-09
into
master
May 21, 2021
Overview
0
Commits
2
Pipelines
2
Changes
1
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
54184ae8
2 commits,
May 21, 2021
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Project/Controllers/ProjectController.cs
+
2
−
2
View file @ 54184ae8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -665,7 +665,7 @@ namespace Coscine.Api.Project.Controllers
{
[
"placeholder"
]
=
new
JObject
()
{
[
"confirmation_link"
]
=
$@"
{
_configuration
.
GetString
(
"coscine/local/api/additional/url"
)}
/
invitation
?token=
{
token
}
"
[
"confirmation_link"
]
=
$@"
{
_configuration
.
GetString
(
"coscine/local/api/additional/url"
)}
/
SitePages/Home.aspx
?token=
{
token
}
"
}
}
};
@@ -757,7 +757,7 @@ namespace Coscine.Api.Project.Controllers
_invitationModel
.
Delete
(
invitation
);
return
Ok
(
$"User
{
user
.
Id
}
is now
{
role
.
DisplayName
}
of project
{
project
.
Id
}
."
);
return
NoContent
(
);
}
private
static
bool
IsValidEmail
(
string
email
)
Loading