| 12 | export const getClanByDistrictId = Id => fetchJson(`/db/clan/districtId/${Id}`) |
| 13 | |
| 14 | export const joinClan = clanId => fetchJson(`/db/clan/${clanId}/join`, { |
| 15 | method: 'PUT' |
| 16 | }) |
| 17 | |
| 18 | export const leaveClan = clanId => fetchJson(`/db/clan/${clanId}/leave`, { |
| 19 | method: 'PUT' |
no outgoing calls
no test coverage detected