gitlab-org--gitlab-foss/app/observers/base_observer.rb

14 lines
220 B
Ruby

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