pgadmin4/web/pgadmin/settings/hooks.py

16 lines
523 B
Python
Raw Normal View History

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
2015-02-25 14:25:41 -06:00
# Copyright (C) 2013 - 2015, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
"""Browser integration functions for settings."""
2015-02-13 09:19:08 -06:00
from flask import url_for
2015-02-13 09:19:08 -06:00
def get_scripts():
"""Return a list of script URLs to include in the rendered page header"""
return [ url_for('settings.script') ]