mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
22 lines
746 B
Elixir
22 lines
746 B
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.")
|
|
|> redirect(to: Routes.image_path(conn, :show, image))
|
|
end
|
|
end
|