Skip to content

Commit

Permalink
fix(username): text change
Browse files Browse the repository at this point in the history
  • Loading branch information
mfshao committed Dec 2, 2019
1 parent cbf1254 commit 177f9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fence/resources/openid/synapse_oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def get_user_id(self, code):
return dict(error="Required claim {} not found".format(claim))
else:
rv[claim] = value
rv["fence_username"] = rv["userid"] + " (via Synapse)"
rv["fence_username"] = rv["userid"] + " (Synapse ID)"
return rv
except Exception as e:
self.logger.exception("Can't get user info")
Expand Down

0 comments on commit 177f9e0

Please sign in to comment.