changed path to gateway utils
This commit is contained in:
parent
c71eeb6c71
commit
ab49e027a1
@ -6,14 +6,14 @@ try: import json
|
|||||||
except: import simplejson as json
|
except: import simplejson as json
|
||||||
|
|
||||||
def get_account_settings_url(arg=''):
|
def get_account_settings_url(arg=''):
|
||||||
import server_tools.server_tools.gateway_utils
|
import server_tools.gateway_utils
|
||||||
return server_tools.server_tools.gateway_utils.get_account_settings_url()
|
return server_tools.gateway_utils.get_account_settings_url()
|
||||||
|
|
||||||
#
|
#
|
||||||
# set max users
|
# set max users
|
||||||
#
|
#
|
||||||
def get_max_users(arg=''):
|
def get_max_users(arg=''):
|
||||||
from server_tools.server_tools.gateway_utils import get_max_users_gateway
|
from server_tools.gateway_utils import get_max_users_gateway
|
||||||
return {
|
return {
|
||||||
'max_users': get_max_users_gateway(),
|
'max_users': get_max_users_gateway(),
|
||||||
'enabled': cint(webnotes.conn.sql("select count(*) from tabProfile where ifnull(enabled,0)=1 and name not in ('Administrator', 'Guest')")[0][0])
|
'enabled': cint(webnotes.conn.sql("select count(*) from tabProfile where ifnull(enabled,0)=1 and name not in ('Administrator', 'Guest')")[0][0])
|
||||||
@ -44,7 +44,7 @@ def delete_user(args):
|
|||||||
webnotes.conn.sql("update tabProfile set enabled=0, docstatus=2 where name=%s", args['user'])
|
webnotes.conn.sql("update tabProfile set enabled=0, docstatus=2 where name=%s", args['user'])
|
||||||
# erpnext-saas
|
# erpnext-saas
|
||||||
if cint(webnotes.conn.get_value('Control Panel', None, 'sync_with_gateway')):
|
if cint(webnotes.conn.get_value('Control Panel', None, 'sync_with_gateway')):
|
||||||
from server_tools.server_tools.gateway_utils import remove_user_gateway
|
from server_tools.gateway_utils import remove_user_gateway
|
||||||
remove_user_gateway(args['user'])
|
remove_user_gateway(args['user'])
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -55,7 +55,7 @@ def add_user(args):
|
|||||||
add_profile(args['user'])
|
add_profile(args['user'])
|
||||||
# erpnext-saas
|
# erpnext-saas
|
||||||
if cint(webnotes.conn.get_value('Control Panel', None, 'sync_with_gateway')):
|
if cint(webnotes.conn.get_value('Control Panel', None, 'sync_with_gateway')):
|
||||||
from server_tools.server_tools.gateway_utils import add_user_gateway
|
from server_tools.gateway_utils import add_user_gateway
|
||||||
add_user_gateway(args['user'])
|
add_user_gateway(args['user'])
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user