(state, updates)
| 156 | |
| 157 | mutations: { |
| 158 | updateUser (state, updates) { |
| 159 | // deep copy, since nested data may be changed, and vuex store restricts mutations |
| 160 | return _.assign(state, $.extend(true, {}, updates)) |
| 161 | }, |
| 162 | }, |
| 163 | |
| 164 | actions: { |
nothing calls this directly
no outgoing calls
no test coverage detected