(
env: &PocketIc,
station_canister_id: Principal,
requester: Principal,
)
| 55 | } |
| 56 | |
| 57 | pub fn list_users( |
| 58 | env: &PocketIc, |
| 59 | station_canister_id: Principal, |
| 60 | requester: Principal, |
| 61 | ) -> Result<(ApiResult<ListUsersResponse>,), RejectResponse> { |
| 62 | query_candid_as::<(ListUsersInput,), (ApiResult<ListUsersResponse>,)>( |
| 63 | env, |
| 64 | station_canister_id, |
| 65 | requester, |
| 66 | "list_users", |
| 67 | (ListUsersInput { |
| 68 | search_term: None, |
| 69 | statuses: None, |
| 70 | groups: None, |
| 71 | paginate: None, |
| 72 | },), |
| 73 | ) |
| 74 | } |
no outgoing calls