|
@@ -77,7 +77,7 @@ class UserRelationManager(abc.ABC):
|
|
|
pass
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
- def list_staff_users(self) -> List[Dict]:
|
|
|
+ def list_staff_users(self, staff_id: str = None, tag_id: int = None) -> List[Dict]:
|
|
|
pass
|
|
|
|
|
|
@abc.abstractmethod
|
|
@@ -227,7 +227,7 @@ class LocalUserRelationManager(UserRelationManager):
|
|
|
def list_users(self, staff_id: str, page: int = 1, page_size: int = 100):
|
|
|
return []
|
|
|
|
|
|
- def list_staff_users(self):
|
|
|
+ def list_staff_users(self, staff_id: str = None, tag_id: int = None):
|
|
|
return [
|
|
|
{"staff_id": "1688854492669990", "user_id": "7881299670930896"}
|
|
|
]
|