Skip to content
Snippets Groups Projects
Commit 8946e75f authored by Steve Anderson / Steve Ronuken's avatar Steve Anderson / Steve Ronuken Committed by Gabriel Engel
Browse files

adding EVE online sso support (#3389)

* add EVE sso support

* Update custom_oauth_server.coffee

* bah. tab indents.
parent 75934d57
No related branches found
No related tags found
No related merge requests found
......@@ -120,6 +120,9 @@ class CustomOAuth
if identity?.user_id and not identity.id
identity.id = identity.user_id
if identity?.CharacterID and not identity.id
identity.id = identity.CharacterID
# console.log 'id:', JSON.stringify identity, null, ' '
serviceData =
......@@ -132,7 +135,7 @@ class CustomOAuth
serviceData: serviceData
options:
profile:
name: identity.name or identity.username or identity.nickname
name: identity.name or identity.username or identity.nickname or identity.CharacterName
# console.log data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment