mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
16 lines
386 B
Elixir
16 lines
386 B
Elixir
|
defmodule PhilomenaWeb.NotificationView do
|
||
|
use PhilomenaWeb, :view
|
||
|
|
||
|
@template_paths %{
|
||
|
"Channel" => "_channel.html",
|
||
|
"Forum" => "_forum.html",
|
||
|
"Gallery" => "_gallery.html",
|
||
|
"Image" => "_image.html",
|
||
|
"LivestreamChannel" => "_channel.html",
|
||
|
"Topic" => "_topic.html"
|
||
|
}
|
||
|
|
||
|
def notification_template_path(actor_type) do
|
||
|
@template_paths[actor_type]
|
||
|
end
|
||
|
end
|