philomena/lib/philomena_web/controllers/notification_controller.ex
2024-07-28 12:39:11 -04:00

15 lines
381 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,
page_size: 10
)
render(conn, "index.html", title: "Notification Area", notifications: notifications)
end
end