mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
9 lines
196 B
Elixir
9 lines
196 B
Elixir
defmodule PhilomenaWeb.ImageView do
|
|
use PhilomenaWeb, :view
|
|
|
|
alias Philomena.Images.Image
|
|
|
|
def thumb_url(image, show_hidden, name) do
|
|
Image.thumb_url(image, show_hidden, name)
|
|
end
|
|
end
|