Sha256: affac27fe0b10d95b24735940375dc409b13487cff1a5448375a5642a152cedf

Contents?: true

Size: 506 Bytes

Versions: 4

Compression:

Stored size: 506 Bytes

Contents

module AuthLh
  class UserExtended
    attr_accessor :email, :jabber, :name, :login, :password_digest,
      :password_expired, :enabled, :shop_code, :allow_remote_access,
      :session_timeout, :only_working_time, :dni, :allow_multiple_sessions,
      :working_time, :has_attendance_control, :has_remote_desktop,
      :fingerprint_from, :fingerprint_to, :role_codes, :app_codes

    def initialize(attributes={})
      attributes.each do |k,v|
        self.send("#{k}=", v)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
auth-lh-0.13.0 lib/auth_lh/user_extended.rb
auth-lh-0.12.1 lib/auth_lh/user_extended.rb
auth-lh-0.12.0 lib/auth_lh/user_extended.rb
auth-lh-0.11.2 lib/auth_lh/user_extended.rb