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

Merge branch 'Hotfix/2562-organizations' into 'master'

New: Added missing contact information generation for the RWTH Aachen

See merge request !17
parents 7e1bc70a e57316c2
No related branches found
No related tags found
1 merge request!17New: Added missing contact information generation for the RWTH Aachen
Pipeline #1410913 failed
......@@ -325,7 +325,7 @@ namespace Coscine.OrganizationLoader
streamWriter.WriteLine();
streamWriter.WriteLine($"<{rorId}>");
streamWriter.WriteLine(@" dcterms:publisher <https://itc.rwth-aachen.de/> ;");
streamWriter.WriteLine(@" dcterms:rights ""Copyright © 2020 IT Center, RWTH Aachen University"" ;");
streamWriter.WriteLine(@" dcterms:rights ""Copyright © 2023 IT Center, RWTH Aachen University"" ;");
streamWriter.WriteLine(@" dcterms:title ""RWTH Aachen University""@en ;");
streamWriter.WriteLine();
streamWriter.WriteLine(@" a org:FormalOrganization ;");
......@@ -396,6 +396,12 @@ namespace Coscine.OrganizationLoader
streamWriter.WriteLine($@"<{organizationMapping.RorId}> org:identifier ""{organizationMapping.EntityId}"" .");
}
// Contact Information
streamWriter.WriteLine($"<{rorId}> coscineresource:contactInformation [");
streamWriter.WriteLine(@" foaf:name ""Service Desk"";");
streamWriter.WriteLine(@" foaf:mbox <mailto:servicedesk@rwth-aachen.de>;");
streamWriter.WriteLine("].");
streamWriter.Flush();
return Encoding.UTF8.GetString(memoryStream.ToArray());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment