*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit de5f6ad2 authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Cast TISS ID into a string for Invenio-DAMAP

* the identifier is expected to be a string, but the TISS ID would
  typically be an integer which caused issues with the integration
parent 86efb684
No related branches found
No related tags found
1 merge request!72Cast TISS ID into a string for Invenio-DAMAP
...@@ -29,6 +29,6 @@ def tuw_id_generator(identity) -> dict[str, str]: ...@@ -29,6 +29,6 @@ def tuw_id_generator(identity) -> dict[str, str]:
tiss_id = u.user_profile.get("tiss_id") tiss_id = u.user_profile.get("tiss_id")
if tiss_id: if tiss_id:
identifiers["tiss_id"] = tiss_id identifiers["tiss_id"] = str(tiss_id)
return identifiers return identifiers
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment