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