award feature: use feature flag in more places

This commit is contained in:
justcool393 2023-02-09 10:12:49 -06:00
parent a863b9c957
commit f4445fd58e
4 changed files with 15 additions and 12 deletions

View file

@ -14,7 +14,8 @@ from .static import *
from .users import *
from .votes import *
from .feeds import *
from .awards import *
if FEATURES['AWARDS']:
from .awards import * # disable entirely pending possible future use of coins
from .volunteer import *
if app.debug:
from .dev import *