(e)
| 114 | |
| 115 | methods: { |
| 116 | onClickArchiveContact (e) { |
| 117 | const archived = true |
| 118 | return this.$store.dispatch('page/archiveContact', { skippedContact: this.skippedContact, archived }) |
| 119 | }, |
| 120 | // @$emit('archiveContact', @skippedContact, archived) |
| 121 | onClickUnarchiveContact (e) { |
| 122 | const archived = false |
nothing calls this directly
no outgoing calls
no test coverage detected