2015-02-12 04:57:09 -06:00
|
|
|
##########################################################################
|
|
|
|
#
|
|
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
|
|
#
|
2015-02-25 14:25:41 -06:00
|
|
|
# Copyright (C) 2013 - 2015, The pgAdmin Development Team
|
2015-02-12 04:57:09 -06:00
|
|
|
# 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-12 04:57:09 -06:00
|
|
|
|
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') ]
|