You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
485 B
16 lines
485 B
from utils.request import api_request
|
|
|
|
|
|
def get_online_list_api(page_obj: dict):
|
|
|
|
return api_request(method='post', url='/monitor/online/get', is_headers=True, json=page_obj)
|
|
|
|
|
|
def force_logout_online_api(page_obj: dict):
|
|
|
|
return api_request(method='post', url='/monitor/online/forceLogout', is_headers=True, json=page_obj)
|
|
|
|
|
|
def batch_logout_online_api(page_obj: dict):
|
|
|
|
return api_request(method='post', url='/monitor/online/batchLogout', is_headers=True, json=page_obj)
|
|
|