From 78a403c450425ea86fad7df5737a4a53ed4c6714 Mon Sep 17 00:00:00 2001
From: donal <donalspring@gmail.com>
Date: Mon, 16 Apr 2018 12:57:45 +0200
Subject: [PATCH] Template for TDD

---
 src/store/mutations.js |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/src/store/mutations.js b/src/store/mutations.js
index 6b93da1..2ad29a6 100644
--- a/src/store/mutations.js
+++ b/src/store/mutations.js
@@ -30,9 +30,5 @@
   MARK_TODO_COMPLETED(state, index) {
     console.log("INFO - MARK_TODO_COMPLETED");
     state.todos[index].completed = !state.todos[index].completed;
-  },
-  MARK_TODO_IMPORTANT(state, index) {
-    console.log("INFO - MARK_TODO_IMPORTANT");
-    state.todos[index].important = !state.todos[index].important;
   }
 };

--
Gitblit v1.9.3