From b91b9d073680a0371af825238af230e9618aea12 Mon Sep 17 00:00:00 2001 From: Grant Ammons Date: Mon, 2 May 2016 07:32:05 -0400 Subject: Add archive/unarchive --- todolist/app.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'todolist/app.go') diff --git a/todolist/app.go b/todolist/app.go index 37961e0..598612c 100644 --- a/todolist/app.go +++ b/todolist/app.go @@ -58,6 +58,28 @@ func (a *App) UncompleteTodo(input string) { } } +func (a *App) ArchiveTodo(input string) { + id := a.getId(input) + if id != -1 { + a.TodoStore.Archive(id) + a.TodoStore.Save() + fmt.Println("Todo archived.") + } else { + fmt.Println("Could not find id.") + } +} + +func (a *App) UnarchiveTodo(input string) { + id := a.getId(input) + if id != -1 { + a.TodoStore.Unarchive(id) + a.TodoStore.Save() + fmt.Println("Todo unarchived.") + } else { + fmt.Println("Could not find id.") + } +} + func (a *App) ListTodos(input string) { //filtered := NewFilter(a.TodoStore.Todos()).filter() grouped := a.getGroups(input) -- cgit v1.3