mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-15 03:27:18 +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()
|
init_db()
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.secret_key = urandom(32)
|
app.secret_key = urandom(32)
|
||||||
|
app.jinja_env.globals.update(get_url=lambda endpoint: f'{BASEURL}{url_for(endpoint)}') # pylint: disable=no-member
|
||||||
|
|
||||||
def get_url(endpoint):
|
|
||||||
return f'{BASEURL}{url_for(endpoint)}'
|
|
||||||
app.jinja_env.globals.update(get_url=get_url)
|
|
||||||
|
|
||||||
|
|
||||||
@app.route('/', methods=['GET', 'POST'])
|
@app.route('/', methods=['GET', 'POST'])
|
||||||
|
Loading…
Reference in New Issue
Block a user