Sha256: c634f26cccf1570b5aeaec425ce0d392ec525b03cba26efec42ab60f77ebec98
Contents?: true
Size: 798 Bytes
Versions: 1
Compression:
Stored size: 798 Bytes
Contents
module Kiqr module Config include ActiveSupport::Configurable # ==> Application name # The name of the application. This will be displayed in the meta title # and on various places in the application. config_accessor :app_name, default: "KIQR" # ==> From email # Configure the e-mail address which will be shown in Devise::Mailer, # note that it will be overwritten if you use your own mailer class # with default "from" parameter. config_accessor :default_from_email, default: "please-change-me-at-config-initializers@example.com" # ==> Account attributes # Strong parameters for account. Used for account creation and update. # Affects both personal and team accounts. config_accessor :account_attributes, default: [ :name ] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kiqr-0.1.0.alpha1 | lib/kiqr/config.rb |