Sha256: 8b8252be60ae58b34772bc63cbebedda76c23fbf26e2cfce1613d776507e3e22
Contents?: true
Size: 722 Bytes
Versions: 54
Compression:
Stored size: 722 Bytes
Contents
module BulletTrain class Configuration include Singleton attr_accessor :strong_passwords, :enable_bulk_invitations, :incoming_webhooks_parent_class_name @@config = nil def initialize @@config = self # Default values @strong_passwords = true @enable_bulk_invitations = false @incoming_webhooks_parent_class_name = "ApplicationRecord" end class << self def strong_passwords @@config&.strong_passwords end def enable_bulk_invitations @@config&.enable_bulk_invitations end def incoming_webhooks_parent_class_name @@config&.incoming_webhooks_parent_class_name || "ApplicationRecord" end end end end
Version data entries
54 entries across 54 versions & 1 rubygems