gitlabhq/app/observers/base_observer.rb

12 lines
179 B
Ruby
Raw Normal View History

class BaseObserver < ActiveRecord::Observer
protected
def notification
NotificationService.new
end
def log_info message
Gitlab::AppLogger.info message
end
end