6 lines
149 B
Ruby
6 lines
149 B
Ruby
class NotificationsController < ApplicationController
|
|
def index
|
|
@notifications = Current.user.notifications.unread.ordered.limit(20)
|
|
end
|
|
end
|