Class: UserMgmt::User

Inherits:
Object
  • Object
show all
Defined in:
app/models/user_mgmt/user.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#emailObject

Returns the value of attribute email.



4
5
6
# File 'app/models/user_mgmt/user.rb', line 4

def email
  @email
end

#passwordObject

Returns the value of attribute password.



4
5
6
# File 'app/models/user_mgmt/user.rb', line 4

def password
  @password
end

#password_confirmationObject

Returns the value of attribute password_confirmation.



4
5
6
# File 'app/models/user_mgmt/user.rb', line 4

def password_confirmation
  @password_confirmation
end

Class Method Details

.dummyObject



10
11
12
# File 'app/models/user_mgmt/user.rb', line 10

def self.dummy
	"yay"
end

.find(session_id) ⇒ Object



6
7
8
# File 'app/models/user_mgmt/user.rb', line 6

def self.find session_id

end