mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
24 lines
734 B
Elixir
24 lines
734 B
Elixir
defmodule PhilomenaWeb.Image.ApproveController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Images.Image
|
|
alias Philomena.Images
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, create: :approve
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
|
|
|
|
def create(conn, _params) do
|
|
image = conn.assigns.image
|
|
|
|
{:ok, _comment} = Images.approve_image(image)
|
|
|
|
conn
|
|
|> put_flash(:info, "Image has been approved.")
|
|
|> moderation_log(details: &log_details/3, data: image)
|
|
|> redirect(to: Routes.admin_approval_path(conn, :index))
|
|
end
|
|
|
|
defp log_details(conn, _action, image) do
|
|
%{body: "Approved image #{image.id}", subject_path: Routes.image_path(conn, :show, image)}
|
|
end
|
|
end
|