Sha256: b9fa01181ce1e5f42773eba8cb8557a382b92db598118c360aa2480d93f01d8d
Contents?: true
Size: 805 Bytes
Versions: 6
Compression:
Stored size: 805 Bytes
Contents
unless PluginRoutes.static_system_info['user_model'].present? module CamaleonCms class User < ActiveRecord::Base include CamaleonCms::UserMethods self.table_name = PluginRoutes.static_system_info['cama_users_db_table'] || "#{PluginRoutes.static_system_info['db_prefix']}users" default_scope { order(role: :asc) } validates :username, presence: true validates :email, presence: true, format: { with: /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i } #, :unless => Proc.new { |a| a.auth_social.present? } has_secure_password def self.find_by_email(email) where(['lower(email) = ?', email.to_s.downcase]).take end def self.find_by_username(username) where(['lower(username) = ?', username.to_s.downcase]).take end end end end
Version data entries
6 entries across 6 versions & 1 rubygems