2021-03-19 19:32:18 +00:00
|
|
|
defmodule Legendary.Content.FeedsView do
|
|
|
|
use Legendary.Content, :view
|
2020-07-22 19:22:44 +00:00
|
|
|
use Phoenix.HTML
|
2020-08-18 15:49:36 +00:00
|
|
|
|
2021-09-27 04:19:49 +00:00
|
|
|
import Legendary.Content.LayoutView, only: [title: 2, excerpt: 2]
|
2020-07-22 19:22:44 +00:00
|
|
|
|
2021-09-06 19:43:16 +00:00
|
|
|
def unauthenticated_post?(post) do
|
2020-07-28 15:54:24 +00:00
|
|
|
post.password == nil || String.length(post.password) == 0
|
2020-07-22 19:22:44 +00:00
|
|
|
end
|
|
|
|
end
|