Fix a few nits from recent PR.
This commit is contained in:
parent
34884d8377
commit
6d258f1027
@ -21,6 +21,7 @@ class Triggers:
|
|||||||
GameConstants.DDR: 'Dance Dance Revolution',
|
GameConstants.DDR: 'Dance Dance Revolution',
|
||||||
GameConstants.IIDX: 'Beatmania IIDX',
|
GameConstants.IIDX: 'Beatmania IIDX',
|
||||||
GameConstants.JUBEAT: 'Jubeat',
|
GameConstants.JUBEAT: 'Jubeat',
|
||||||
|
GameConstants.MGA: 'Metal Gear Arcade',
|
||||||
GameConstants.MUSECA: 'MÚSECA',
|
GameConstants.MUSECA: 'MÚSECA',
|
||||||
GameConstants.POPN_MUSIC: 'Pop\'n Music',
|
GameConstants.POPN_MUSIC: 'Pop\'n Music',
|
||||||
GameConstants.REFLEC_BEAT: 'Reflec Beat',
|
GameConstants.REFLEC_BEAT: 'Reflec Beat',
|
||||||
|
@ -360,7 +360,7 @@ def navigation() -> Dict[str, Any]:
|
|||||||
'label': 'Metal Gear Arcade',
|
'label': 'Metal Gear Arcade',
|
||||||
'entries': mga_entries,
|
'entries': mga_entries,
|
||||||
'base_uri': app.blueprints['mga_pages'].url_prefix,
|
'base_uri': app.blueprints['mga_pages'].url_prefix,
|
||||||
'gamecode': GameConstants.MGA,
|
'gamecode': GameConstants.MGA.value,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ from bemani.frontend.types import g
|
|||||||
mga_pages = Blueprint(
|
mga_pages = Blueprint(
|
||||||
'mga_pages',
|
'mga_pages',
|
||||||
__name__,
|
__name__,
|
||||||
url_prefix='/mga',
|
url_prefix=f'/{GameConstants.MGA.value}',
|
||||||
template_folder=templates_location,
|
template_folder=templates_location,
|
||||||
static_folder=static_location,
|
static_folder=static_location,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user