mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-02 07:49:39 +00:00
13 lines
347 B
JavaScript
13 lines
347 B
JavaScript
|
|
import { loadAsyncResource } from 'client/libs/asyncResource';
|
||
|
|
|
||
|
|
export function getMembers (store, forceLoad = false) {
|
||
|
|
return loadAsyncResource({
|
||
|
|
store,
|
||
|
|
path: 'party.members',
|
||
|
|
url: '/api/v3/groups/party/members?includeAllPublicFields=true',
|
||
|
|
deserialize (response) {
|
||
|
|
return response.data.data;
|
||
|
|
},
|
||
|
|
forceLoad,
|
||
|
|
});
|
||
|
|
}
|