6 lines
184 B
Ruby
6 lines
184 B
Ruby
class Notifications::CountsController < ApplicationController
|
|
def index
|
|
count = current_user ? current_user.notifications.unread.count : 0
|
|
render plain: count.to_s
|
|
end
|
|
end
|