diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-26 13:01:22 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-26 13:01:22 -0700 |
commit | dfe66cc52d9088dbf56ff38c50d791da2eefed78 (patch) | |
tree | 7af05761145c9c05ccd0fec1d5ec50ef852a83e8 /content | |
parent | ec97784d44b5413a7689fd918276a5dbd1f7351e (diff) |
fixing Externalable interface implementation for Post type
Diffstat (limited to 'content')
-rw-r--r-- | content/post.go | 2 |
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 } |