2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class GlobalNotificationSetting < Entities::NotificationSetting
|
|
|
|
expose :notification_email do |notification_setting, options|
|
2021-11-11 11:23:49 +05:30
|
|
|
notification_setting.user.notification_email_or_default
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|