summaryrefslogtreecommitdiff
path: root/app/observers/base_observer.rb
blob: 260d1f05db302301d651b845af915ced0696c8bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class BaseObserver < ActiveRecord::Observer
  def notification
    NotificationService.new
  end

  def event_service
    EventCreateService.new
  end

  def log_info message
    Gitlab::AppLogger.info message
  end
end