12 lines
352 B
Lua
12 lines
352 B
Lua
|
|
IfruitAdapter = {}
|
||
|
|
|
||
|
|
function IfruitAdapter.GetAccountIdentity(source)
|
||
|
|
return {
|
||
|
|
identifier = Config.GetIdentifier(source),
|
||
|
|
charId = Config.GetCharacterId(source),
|
||
|
|
displayName = Config.GetCharacterName(source),
|
||
|
|
mailAddress = Config.GetMailAddress(source),
|
||
|
|
phoneNumber = Config.GetPhoneNumber(source)
|
||
|
|
}
|
||
|
|
end
|