diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-18 13:17:24 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-18 13:17:24 -0700 |
commit | 77f90cb5f1db80e8f94df905453beac6cee8022b (patch) | |
tree | ffca684f49463d765e18ee482c0c6349fbb64493 /management/editor/editor.go | |
parent | d7f41f06a68cd16e94cb64f69b531377d4181c08 (diff) |
adding ContentID to interface Sortable.. it is duplicating method in both Editable and Sortable.. we will see if this is an issue later down the line...
Diffstat (limited to 'management/editor/editor.go')
-rw-r--r-- | management/editor/editor.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/management/editor/editor.go b/management/editor/editor.go index 9ad7690..1525ef9 100644 --- a/management/editor/editor.go +++ b/management/editor/editor.go @@ -19,6 +19,7 @@ type Editable interface { // Sortable ensures data is sortable by time type Sortable interface { Time() int64 + ContentID() int } // Editor is a view containing fields to manage content |