2016-08-20 19:29:22 +00:00
|
|
|
module ApplicationHandleInfo
|
|
|
|
def self.current
|
|
|
|
Thread.current[:application_handle] || 'unknown'
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.current=(name)
|
|
|
|
Thread.current[:application_handle] = name
|
|
|
|
end
|
2017-11-23 08:09:44 +00:00
|
|
|
|
|
|
|
def self.postmaster?
|
|
|
|
return false if current.blank?
|
|
|
|
current.split('.')[1] == 'postmaster'
|
|
|
|
end
|
2016-08-20 19:29:22 +00:00
|
|
|
end
|