base_observer.rb 220 Bytes Edit Raw Blame History Permalink 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