Files
gitlabhq/app/observers/base_observer.rb
T
2014-06-10 17:51:49 +03:00

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