mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-17 19:14:22 +01:00
25 lines
731 B
Elixir
25 lines
731 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.image_path(conn, :show, image))
|
||
|
end
|
||
|
|
||
|
defp log_details(conn, _action, image) do
|
||
|
%{body: "Approved image #{image.id}", subject_path: Routes.image_path(conn, :show, image)}
|
||
|
end
|
||
|
end
|