diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-09 17:57:32 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-09 17:57:32 -0800 |
commit | f63f7c4a847b37290121f823ae870e8fda74442f (patch) | |
tree | d3689c7cb43c516e1250d9fe4cd26bcf9f1b5ff1 /content/types.go | |
parent | f0eeb90641a85f30ea364a506fa548ac3b24fd09 (diff) |
moving Mergeable interface to editor package. Fighting with cyclical imports for too long will make you do things. Editable and Sortable interfaces are here already, so clerically its ok.
Diffstat (limited to 'content/types.go')
-rw-r--r-- | content/types.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/content/types.go b/content/types.go index f3b8bb3..ede2b58 100644 --- a/content/types.go +++ b/content/types.go @@ -1,7 +1,5 @@ package content -import "net/http" - const ( // ErrTypeNotRegistered means content type isn't registered (not found in Types map) ErrTypeNotRegistered = `Error: @@ -18,14 +16,6 @@ func init() { ` ) -// Mergeable allows external post content to be approved and published through -// the public-facing API -type Mergeable interface { - // Approve copies an external post to the internal collection and triggers - // a re-sort of its content type posts - Approve(req *http.Request) error -} - // Types is a map used to reference a type name to its actual Editable type // mainly for lookups in /admin route based utilities var Types = make(map[string]func() interface{}) |