mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
11 lines
340 B
Elixir
11 lines
340 B
Elixir
defmodule PhilomenaWeb.NotificationController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Notifications
|
|
|
|
def index(conn, _params) do
|
|
notifications = Notifications.unread_notifications_for_user(conn.assigns.current_user, 15)
|
|
|
|
render(conn, "index.html", title: "Notification Area", notifications: notifications)
|
|
end
|
|
end
|