mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
27 lines
780 B
Elixir
27 lines
780 B
Elixir
|
defmodule PhilomenaWeb.Api.Json.GalleryView do
|
||
|
use PhilomenaWeb, :view
|
||
|
|
||
|
def render("index.json", %{galleries: galleries, total: total} = assigns) do
|
||
|
%{
|
||
|
galleries: render_many(galleries, PhilomenaWeb.Api.Json.GalleryView, "gallery.json", assigns),
|
||
|
total: total
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def render("show.json", %{gallery: gallery} = assigns) do
|
||
|
%{gallery: render_one(gallery, PhilomenaWeb.Api.Json.GalleryView, "gallery.json", assigns)}
|
||
|
end
|
||
|
|
||
|
def render("gallery.json", %{gallery: gallery}) do
|
||
|
%{
|
||
|
id: gallery.id,
|
||
|
title: gallery.title,
|
||
|
thumbnail_id: gallery.thumbnail_id,
|
||
|
spoiler_warning: gallery.spoiler_warning,
|
||
|
description: gallery.description,
|
||
|
user: gallery.creator.name,
|
||
|
user_id: gallery.creator_id
|
||
|
}
|
||
|
end
|
||
|
end
|