Skip to content
Snippets Groups Projects
Commit a5779a14 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Update: Added Support for ContactChange (coscine/issues#1294)

parent ebe6596b
Branches
Tags
3 merge requests!22Product/789 user contact email,!21Sprint/2021 04,!20New: Add the Contact Changing functionality to the database and backend
{
"version": 1,
"isRoot": true,
"tools": {
"gitversion.tool": {
"version": "5.6.6",
"commands": [
"dotnet-gitversion"
]
},
"dotnet-version-cli": {
"version": "2.1.1",
"commands": [
"dotnet-version"
]
}
}
}
\ No newline at end of file
......@@ -268,3 +268,6 @@ __pycache__/
tools/*
!tools/packages.config
dist/
# Dotnet Tool Manifest
.config/*
\ No newline at end of file
......@@ -123,7 +123,10 @@ namespace Coscine.Api.NotificationBus.Controllers
dict = ((JObject)(requestArgs["placeholder"])).ToObject<Dictionary<string, object>>();
}
dict.Add("_targetUserName", user.DisplayName);
dict.Add("_projectName", project.DisplayName);
if (project != null)
{
dict.Add("_projectName", project.DisplayName);
}
foreach (JProperty property in template.Properties())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment