mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
28 lines
745 B
Elixir
28 lines
745 B
Elixir
defmodule PhilomenaWeb.Admin.ApprovalController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Images.Image
|
|
alias Philomena.Repo
|
|
import Ecto.Query
|
|
|
|
plug :verify_authorized
|
|
|
|
def index(conn, _params) do
|
|
images =
|
|
Image
|
|
|> where(hidden_from_users: false)
|
|
|> where(approved: false)
|
|
|> order_by(asc: :id)
|
|
|> preload([:user, tags: [:aliases, :aliased_tag]])
|
|
|> Repo.paginate(conn.assigns.scrivener)
|
|
|
|
render(conn, "index.html", title: "Admin - Approval Queue", images: images)
|
|
end
|
|
|
|
defp verify_authorized(conn, _opts) do
|
|
case Canada.Can.can?(conn.assigns.current_user, :approve, %Image{}) do
|
|
true -> conn
|
|
false -> PhilomenaWeb.NotAuthorizedPlug.call(conn)
|
|
end
|
|
end
|
|
end
|