summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-26 13:01:22 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-26 13:01:22 -0700
commitdfe66cc52d9088dbf56ff38c50d791da2eefed78 (patch)
tree7af05761145c9c05ccd0fec1d5ec50ef852a83e8 /content
parentec97784d44b5413a7689fd918276a5dbd1f7351e (diff)
fixing Externalable interface implementation for Post type
Diffstat (limited to 'content')
-rw-r--r--content/post.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/post.go b/content/post.go
index eb46de7..206532c 100644
--- a/content/post.go
+++ b/content/post.go
@@ -91,5 +91,5 @@ 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
+ return true
}