mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
25 lines
730 B
Elixir
25 lines
730 B
Elixir
defmodule PhilomenaWeb.Image.HashController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Images.Image
|
|
alias Philomena.Images
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, delete: :hide
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
|
|
|
|
def delete(conn, _params) do
|
|
{:ok, image} = Images.remove_hash(conn.assigns.image)
|
|
|
|
conn
|
|
|> put_flash(:info, "Successfully cleared hash.")
|
|
|> 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: "Cleared hash of image >>#{image.id}",
|
|
subject_path: Routes.image_path(conn, :show, image)
|
|
}
|
|
end
|
|
end
|