mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 03:26:07 +10:00
10 lines
166 B
Ruby
10 lines
166 B
Ruby
class BaseObserver < ActiveRecord::Observer
|
|
def notification
|
|
NotificationService.new
|
|
end
|
|
|
|
def log_info message
|
|
Gitlab::AppLogger.info message
|
|
end
|
|
end
|