pgadmin4/web/pgadmin/misc/dependencies/__init__.py

31 lines
910 B
Python
Raw Normal View History

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
2022-01-04 02:24:25 -06:00
# Copyright (C) 2013 - 2022, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
"""A blueprint module providing utility functions for the application."""
2016-06-21 08:12:14 -05:00
from flask import url_for
from pgadmin.utils import PgAdminModule
MODULE_NAME = 'dependencies'
class DependenciesModule(PgAdminModule):
def get_own_javascripts(self):
return [{
'name': 'pgadmin.browser.dependencies',
'path': url_for('dependencies.static',
filename='js/dependencies'),
'when': None
2016-06-21 08:21:06 -05:00
}]
# Initialise the module
blueprint = DependenciesModule(MODULE_NAME, __name__,
url_prefix='/misc/dependencies')