async hasAccess()

in src/lib/service/custos-service/custos-service-groups.js [294:306]


    async hasAccess({groupId, username, membershipType}) {
        const axiosInstance = await this.custosService.axiosInstance;
        return axiosInstance.get(
            `${CustosService.ENDPOINTS.GROUPS}/user/group/access`,
            {
                params: {
                    "group.id": groupId,
                    "username": username,
                    "type": membershipType
                }
            }
        );
    }