class GetUnseenNotificationsService def initialize(user) @user = user end def get return 1 if Rails.env.test? return 1 unless @user NotificationCounter.new(@user).unread_notification_count end end