class Notifun::Configuration
Attributes
admin_parent_controller[RW]
controller_method[RW]
notification_methods[RW]
parent_mailer[RW]
premailer_html_to_text[RW]
push_config[RW]
push_notifier[RW]
text_config[RW]
text_notifier[RW]
time_zone[RW]
user_parent_controller[RW]
wysiwyg[RW]
Public Class Methods
new()
click to toggle source
# File lib/notifun/configuration.rb, line 5 def initialize @notification_methods = [] @parent_mailer = 'ActionMailer::Base' @push_notifier = "Empty" @push_config = {} @text_notifier = "Empty" @text_config = {} @wysiwyg = "none" @admin_parent_controller = "ActionController::Base" @user_parent_controller = "ActionController::Base" @controller_method = "current_user" @time_zone = "Etc/UTC" @premailer_html_to_text = false end