Skip to content
Snippets Groups Projects

New: Added missing contact information generation for the RWTH Aachen

Merged Petar Hristov requested to merge Hotfix/2562-organizations into master
1 file
+ 7
1
Compare changes
  • Side-by-side
  • Inline
@@ -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());
Loading