Last active
August 29, 2015 14:20
-
-
Save careo/96853b5a5cafef74abda to your computer and use it in GitHub Desktop.
errbit config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Configuration < Attributor::Model | |
attribute :host, String | |
attribute :protocol, String | |
attribute :port, String | |
attribute :enforce_ssl, String | |
attribute :confirm_err_actions, String | |
attribute :user_has_username, String | |
attribute :use_gravatar, String | |
attribute :gravatar_default, String | |
attribute :email_from, String | |
attribute :email_at_notices, String | |
attribute :per_app_email_at_notices, String | |
attribute :notify_at_notices, String | |
attribute :per_app_notify_at_notices, String | |
attribute :serve_static_assets, String | |
attribute :secret_key_base, String | |
attribute :mongo_url, String | |
attribute :github do | |
attribute :url, String | |
attribute :authentication, String | |
attribute :client_id, String | |
attribute :secret, String | |
attribute :org_id, String | |
attribute :access_scope, String | |
end | |
attribute :email_delivery_method, String | |
attribute :smtp do | |
attribute :address, String | |
attribute :port, String | |
attribute :authentication, String | |
attribute :user_name, String | |
attribute :password, String | |
attribute :domain, String | |
end | |
attribute :sendmail do | |
attribute :location, String | |
attribute :arguments, String | |
end | |
attribute :devise_modules, String | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment