({ commit })
| 115 | }, |
| 116 | |
| 117 | async fetchPublicClans ({ commit }) { |
| 118 | const clans = await getPublicClans() |
| 119 | for (const clan of clans) { |
| 120 | commit('setClan', clan) |
| 121 | } |
| 122 | }, |
| 123 | |
| 124 | async fetchChildClanDetails ({ commit }, { id }) { |
| 125 | const childClans = await getChildClanDetails(id) |
nothing calls this directly
no test coverage detected