2020-02-12 04:09:11 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class GlobalNotificationSetting < Entities::NotificationSetting
|
|
|
|
expose :notification_email do |notification_setting, options|
|
2021-09-16 11:12:47 -04:00
|
|
|
notification_setting.user.notification_email_or_default
|
2020-02-12 04:09:11 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|