mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
30 lines
1 KiB
Elixir
30 lines
1 KiB
Elixir
defmodule PhilomenaWeb.Image.ScratchpadController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Images.Image
|
|
alias Philomena.Images
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, edit: :hide, update: :hide
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
|
|
|
|
def edit(conn, _params) do
|
|
changeset = Images.change_image(conn.assigns.image)
|
|
render(conn, "edit.html", title: "Editing Moderation Notes", changeset: changeset)
|
|
end
|
|
|
|
def update(conn, %{"image" => image_params}) do
|
|
{:ok, image} = Images.update_scratchpad(conn.assigns.image, image_params)
|
|
|
|
conn
|
|
|> put_flash(:info, "Successfully updated moderation notes.")
|
|
|> PhilomenaWeb.ModerationLogPlug.call(details: &log_details/3, data: image)
|
|
|> redirect(to: Routes.image_path(conn, :show, image))
|
|
end
|
|
|
|
defp log_details(conn, _action, image) do
|
|
%{
|
|
body: "Updated mod notes on image >>#{image.id} (#{image.scratchpad})",
|
|
subject_path: Routes.image_path(conn, :show, image)
|
|
}
|
|
end
|
|
end
|