mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 11:36:09 +10:00
14 lines
226 B
Ruby
14 lines
226 B
Ruby
class BaseObserver < ActiveRecord::Observer
|
|
def notification
|
|
NotificationService.new
|
|
end
|
|
|
|
def log_info message
|
|
Gitlab::AppLogger.info message
|
|
end
|
|
|
|
def current_user
|
|
Thread.current[:current_user]
|
|
end
|
|
end
|