View Source Franklin.Articles.Article (Franklin v0.1.0)

A long form of written content for the blog.

This entity is a projection based on recorded events relative to a specific Article.

Link to this section Summary

Link to this section Types

@type id() :: Ecto.UUID.t()
@type slug() :: String.t()
@type t() :: %Franklin.Articles.Article{
  __meta__: term(),
  body: String.t(),
  id: id(),
  inserted_at: term(),
  published_at: DateTime.t() | nil,
  slug: slug(),
  title: String.t(),
  updated_at: term()
}

Link to this section Functions

Link to this function

insert_changeset(article, attrs \\ %{})

View Source
Link to this function

update_changeset(article, attrs \\ %{})

View Source