aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'todolist/app.go')
-rw-r--r--todolist/app.go22
1 files changed, 22 insertions, 0 deletions
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)