Sha256: 87f4633efa10fc28b593217840df5287e199ac9d52e375ad6f38eea41d4346d1
Contents?: true
Size: 444 Bytes
Versions: 122
Compression:
Stored size: 444 Bytes
Contents
# frozen_string_literal: true module Spree # Default implementation of User. # # @note This class is intended to be modified by extensions (ex. # spree_auth_devise) class LegacyUser < Spree::Base include UserMethods self.table_name = 'spree_users' def self.model_name ActiveModel::Name.new Spree::LegacyUser, Spree, 'user' end attr_accessor :password attr_accessor :password_confirmation end end
Version data entries
122 entries across 122 versions & 1 rubygems