diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-06 09:54:14 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-06 09:54:14 -0800 |
commit | 4e5f54cf8f64b849bf2fbdd610012ebeb7786091 (patch) | |
tree | 6fd9394a1b5a4733a7d20067b8c588ee5fcd8fc4 /management/editor/editor.go | |
parent | 40b5cfe2289b179c511a6c73757bb64228f0bc82 (diff) |
removing ContentName() from editor.Editble and adding String() to content.Identifiable so embedded Items can manage display names by default, but easily overridden
Diffstat (limited to 'management/editor/editor.go')
-rw-r--r-- | management/editor/editor.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/management/editor/editor.go b/management/editor/editor.go index 2a9183b..6b55a38 100644 --- a/management/editor/editor.go +++ b/management/editor/editor.go @@ -9,7 +9,6 @@ import ( // Editable ensures data is editable type Editable interface { - ContentName() string Editor() *Editor MarshalEditor() ([]byte, error) } |