Add autoren and artikel for public viewing
This commit is contained in:
21
lib/outlook/artikel.ex
Normal file
21
lib/outlook/artikel.ex
Normal file
@ -0,0 +1,21 @@
|
||||
defmodule Outlook.Artikel do
|
||||
@moduledoc """
|
||||
The Artikel context.
|
||||
"""
|
||||
|
||||
alias Outlook.Translations.Translation
|
||||
|
||||
import Ecto.Query, warn: false
|
||||
alias Outlook.Repo
|
||||
|
||||
def list_artikel do
|
||||
Repo.all(from t in Translation, where: t.public == true)
|
||||
|> Repo.preload([article: :author])
|
||||
end
|
||||
|
||||
def get_artikel!(artikel) when is_struct(artikel), do: get_artikel!(artikel.id)
|
||||
def get_artikel!(id) do
|
||||
Repo.one(from t in Translation, where: t.id == ^id and t.public == true)
|
||||
|> Repo.preload([article: :author])
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user