mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
15 lines
381 B
Elixir
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
|