1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-22 13:34:04 +03:00

Fixed OpenGnsys

This commit is contained in:
Adolfo Gómez García 2017-09-25 14:18:19 +02:00
parent d5688116e3
commit 06f5184ddd
2 changed files with 4 additions and 4 deletions

View File

@ -39,5 +39,5 @@ from uds.core.Environment import Environmentable
from uds.core.Serializable import Serializable
from uds.core.BaseModule import Module
VERSION = '2.1.0-DEVEL'
VERSION_STAMP = '20161001-DEVEL'
VERSION = '2.2.0-DEVEL'
VERSION_STAMP = '20170901-DEVEL'

View File

@ -48,7 +48,7 @@ import logging
import six
__updated__ = '2017-05-23'
__updated__ = '2017-09-25'
logger = logging.getLogger(__name__)
@ -122,7 +122,7 @@ class OGProvider(ServiceProvider):
@property
def endpoint(self):
return 'https://{}:{}/rest'.format(self.host.value, self.port.value)
return 'https://{}:{}/opengnsys/rest'.format(self.host.value, self.port.value)
@property
def api(self):