Class: JunglePath::API::Helpers::AuthLocalUser::Identity
- Inherits:
-
Object
- Object
- JunglePath::API::Helpers::AuthLocalUser::Identity
- Defined in:
- lib/jungle_path/api/helpers/auth_local_user.rb
Instance Attribute Summary collapse
-
#auth ⇒ Object
Returns the value of attribute auth.
-
#key ⇒ Object
Returns the value of attribute key.
-
#remote_password ⇒ Object
Returns the value of attribute remote_password.
-
#remote_user ⇒ Object
Returns the value of attribute remote_user.
-
#roles ⇒ Object
Returns the value of attribute roles.
-
#user ⇒ Object
Returns the value of attribute user.
-
#user_name ⇒ Object
Returns the value of attribute user_name.
-
#valid ⇒ Object
Returns the value of attribute valid.
Instance Method Summary collapse
Instance Attribute Details
#auth ⇒ Object
Returns the value of attribute auth.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def auth @auth end |
#key ⇒ Object
Returns the value of attribute key.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def key @key end |
#remote_password ⇒ Object
Returns the value of attribute remote_password.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def remote_password @remote_password end |
#remote_user ⇒ Object
Returns the value of attribute remote_user.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def remote_user @remote_user end |
#roles ⇒ Object
Returns the value of attribute roles.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def roles @roles end |
#user ⇒ Object
Returns the value of attribute user.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def user @user end |
#user_name ⇒ Object
Returns the value of attribute user_name.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def user_name @user_name end |
#valid ⇒ Object
Returns the value of attribute valid.
6 7 8 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 6 def valid @valid end |
Instance Method Details
#to_s ⇒ Object
7 8 9 |
# File 'lib/jungle_path/api/helpers/auth_local_user.rb', line 7 def to_s "AuthLocalUser::Identity: {\n remote_user: #{@remote_user},\n remote_password: #{@remote_password},\n user_name: #{@user_name},\n user: #{@user},\n key: #{@key},\n valid: #{@valid},\n roles: #{@roles},\n auth: #{@auth}\n}" end |