-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added blueprint to baseframe-assets #246
Conversation
baseframe/__init__.py
Outdated
@@ -248,6 +248,12 @@ def init_app( | |||
app.assets.register('css_all', css_all) | |||
app.register_blueprint(self, static_subdomain=subdomain) | |||
|
|||
try: | |||
module = __import__('baseframe-assets') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Asset name should be a parameter to the function here. There's no need for __import__
otherwise.
Original ticket: #165. |
baseframe/__init__.py
Outdated
@@ -248,6 +248,14 @@ def init_app( | |||
app.assets.register('css_all', css_all) | |||
app.register_blueprint(self, static_subdomain=subdomain) | |||
|
|||
for module_name in app.config.get('PRIVATE_ASSETS', []): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't use config as it's a statutory requirement for the client app and not a configuration issue. Take it as a parameter named asset_modules
instead.
baseframe/__init__.py
Outdated
module.blueprint.init_app_assets(app, assets) | ||
app.register_blueprint(module.blueprint) | ||
except ImportError: | ||
continue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Log an error here (app logger or Blueprint logger).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two small issues. Can be merged after.
No description provided.