Add missing ESI operation to minimized spec file. My bad.

This commit is contained in:
Adarnof 2021-12-07 23:42:02 -05:00
parent ff7c9c48f3
commit f7d279fa16
2 changed files with 12 additions and 11 deletions

View File

@ -13,17 +13,18 @@ from allianceauth import __version__
SWAGGER_SPEC_PATH = os.path.join(os.path.dirname( SWAGGER_SPEC_PATH = os.path.join(os.path.dirname(
os.path.abspath(__file__)), 'swagger.json' os.path.abspath(__file__)), 'swagger.json'
) )
"""
Swagger spec operations:
get_alliances_alliance_id # for the love of Bob please add operations you use here. I'm tired of breaking undocumented things.
get_alliances_alliance_id_corporations ESI_OPERATIONS=[
get_corporations_corporation_id 'get_alliances_alliance_id',
get_characters_character_id 'get_alliances_alliance_id_corporations',
get_universe_types_type_id 'get_corporations_corporation_id',
post_character_affiliation 'get_characters_character_id',
get_universe_factions 'post_characters_affiliation',
""" 'get_universe_types_type_id',
'get_universe_factions',
'post_universe_names',
]
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

File diff suppressed because one or more lines are too long