aboutsummaryrefslogtreecommitdiff
path: root/config/templates.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/templates.go')
-rw-r--r--config/templates.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/templates.go b/config/templates.go
index 2b16fb22..40e7e450 100644
--- a/config/templates.go
+++ b/config/templates.go
@@ -81,6 +81,12 @@ func (d *dummyData) SubjectBase() string { return "[PATCH] hey" }
func (d *dummyData) Number() int { return 0 }
func (d *dummyData) Labels() []string { return nil }
func (d *dummyData) Flags() []string { return nil }
+func (d *dummyData) IsReplied() bool { return true }
+func (d *dummyData) HasAttachment() bool { return true }
+func (d *dummyData) IsRecent() bool { return false }
+func (d *dummyData) IsUnread() bool { return false }
+func (d *dummyData) IsFlagged() bool { return false }
+func (d *dummyData) IsMarked() bool { return false }
func (d *dummyData) MessageId() string { return "123456789@foo.org" }
func (d *dummyData) Size() int { return 420 }
func (d *dummyData) OriginalText() string { return "Blah blah blah" }