docbrown/app/controllers/notifications/counts_controller.rb
2018-02-28 16:11:08 -05:00

7 lines
222 B
Ruby

class Notifications::CountsController < ApplicationController
skip_before_action :ensure_signup_complete
def index
count = GetUnseenNotificationsService.new(current_user).get
render plain: count.to_s
end
end