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