From bb3cf62f1abf2f85547d304262835fc335134019 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 3 Feb 2012 00:14:50 +0000 Subject: [PATCH] Add API Keytype to the EVE API endpoint --- app/api/handlers/v1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/handlers/v1.py b/app/api/handlers/v1.py index 7a49748..bffe2c4 100644 --- a/app/api/handlers/v1.py +++ b/app/api/handlers/v1.py @@ -132,7 +132,7 @@ class EveAPIHandler(BaseHandler): s = EVEAccount.objects.filter(characters__corporation__alliance__id=request.GET['allianceid']) if s: - return {'keys': s.values('api_user_id', 'user_id', 'api_status', 'api_last_updated')} + return {'keys': s.values('api_user_id', 'user_id', 'api_status', 'api_ketype', 'api_last_updated')} return {'keys': []}