Files
awx/awx/network_ui/client/conf.py
Ben Thomasson 00a9283e32 Adds an API for network UI, action plugins, and API client
* Adds a simple DRF API for network-ui
* Moves network_ui api to v1_api
* Uses BaseSerializer for networking v1 api
* Adds v2 of the network API
* Uses standard AWX base classes for the network UI API
* Adds canvas prefix to network UI api URL names
* Adds ansible action plugins for automating network UI workflows
* Adds python client for the networking visualization API
2018-03-23 17:00:22 -04:00

12 lines
208 B
Python

class _Settings(object):
def __init__(self):
self.SERVER = 'https://meganuke:8043'
self.SSL_VERIFY = False
self.user = None
self.password = None
settings = _Settings()