mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-14 15:47:17 +00:00
Refactor get_url to a lambda
This commit is contained in:
parent
af6f173963
commit
3203f3af84
@ -10,11 +10,7 @@ BASEURL = getenv('BASEURL', '')
|
||||
init_db()
|
||||
app = Flask(__name__)
|
||||
app.secret_key = urandom(32)
|
||||
|
||||
|
||||
def get_url(endpoint):
|
||||
return f'{BASEURL}{url_for(endpoint)}'
|
||||
app.jinja_env.globals.update(get_url=get_url)
|
||||
app.jinja_env.globals.update(get_url=lambda endpoint: f'{BASEURL}{url_for(endpoint)}') # pylint: disable=no-member
|
||||
|
||||
|
||||
@app.route('/', methods=['GET', 'POST'])
|
||||
|
Loading…
Reference in New Issue
Block a user