Skip to content

Commit

Permalink
#47 temporarily move to '/legacy'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrwunderbar666 committed Dec 4, 2023
1 parent 081115d commit c085616
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions meteor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@ def create_app(config_class=Config, config_json=None):
from meteor.endpoints.routes import endpoint
from meteor.main.routes import main
from meteor.errors.handlers import errors
app.register_blueprint(users)
app.register_blueprint(view)
app.register_blueprint(add)
app.register_blueprint(edit)
app.register_blueprint(review)
app.register_blueprint(endpoint)
app.register_blueprint(main)
app.register_blueprint(errors)
app.register_blueprint(users, url_prefix='/legacy')
app.register_blueprint(view, url_prefix='/legacy')
app.register_blueprint(add, url_prefix='/legacy')
app.register_blueprint(edit, url_prefix='/legacy')
app.register_blueprint(review, url_prefix='/legacy')
app.register_blueprint(endpoint, url_prefix='/legacy')
app.register_blueprint(main, url_prefix='/legacy')
app.register_blueprint(errors, url_prefix='/legacy')

jwt.init_app(app)

Expand Down

0 comments on commit c085616

Please sign in to comment.