mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-17 11:04:22 +01:00
10 lines
196 B
Elixir
10 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
|