mirror of
				https://github.com/avatao-content/test-tutorial-framework
				synced 2025-11-04 16:12:56 +00:00 
			
		
		
		
	Refactor get_url to a lambda
This commit is contained in:
		@@ -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'])
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user