Sha256: a1581b273f11958b9491390bb25770960385254779b8cbc6c48c76a3e24b7329
Contents?: true
Size: 699 Bytes
Versions: 30
Compression:
Stored size: 699 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 end end end end
Version data entries
30 entries across 30 versions & 1 rubygems