(charID)
| 355 | |
| 356 | @staticmethod |
| 357 | def getApiDetails(charID): |
| 358 | # todo: fix this (or get rid of?) |
| 359 | return "", "", "", [] |
| 360 | char = eos.db.getCharacter(charID) |
| 361 | if char.chars is not None: |
| 362 | chars = json.loads(char.chars) |
| 363 | else: |
| 364 | chars = None |
| 365 | return char.apiID or "", char.apiKey or "", char.defaultChar or "", chars or [] |
| 366 | |
| 367 | @staticmethod |
| 368 | def getSsoCharacter(charID): |
nothing calls this directly
no test coverage detected