mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-11 16:06:02 -06:00
21 lines
577 B
Python
21 lines
577 B
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2016, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
from flask_babel import gettext
|
|
from pgadmin.browser.server_groups.servers.types import ServerType
|
|
|
|
|
|
class PPAS(ServerType):
|
|
def instanceOf(self, ver):
|
|
return ver.startswith("EnterpriseDB")
|
|
|
|
|
|
# Default Server Type
|
|
PPAS('ppas', gettext("EDB Advanced Server"), 2)
|