Skip to content

Commit 5799d56

Browse files
committed
Update Synapse login string
1 parent 9b59d49 commit 5799d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fence/resources/openid/synapse_oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def get_auth_info(self, code):
142142
return dict(error="Required claim {} not found".format(claim))
143143
else:
144144
rv[claim] = value
145-
rv["fence_username"] = rv["userid"] + " (Synapse ID)"
145+
rv["fence_username"] = rv["userid"] + "@synapse.org"
146146
return rv
147147
except Exception as e:
148148
self.logger.exception("Can't get user info")

0 commit comments

Comments
 (0)