diff options
Diffstat (limited to 'content/post.go')
-rw-r--r-- | content/post.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/post.go b/content/post.go index dcdfeff..eb46de7 100644 --- a/content/post.go +++ b/content/post.go @@ -88,3 +88,8 @@ func (p *Post) SetSlug(slug string) { p.Slug = slug } // Editor partially implements editor.Editable func (p *Post) Editor() *editor.Editor { return &p.editor } + +// Accepts accepts or recjects external requests to submit Review submissions +func (p *Post) Accepts() bool { + return false +} |