Class: UsersController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- UsersController
- Includes:
- SocialStream::Controllers::Subjects
- Defined in:
- app/controllers/users_controller.rb
Instance Method Summary collapse
- #create ⇒ Object
-
#destroy ⇒ Object
Not supported yet.
- #index ⇒ Object
-
#new ⇒ Object
Supported through devise.
Methods included from SocialStream::Controllers::Subjects
Instance Method Details
#create ⇒ Object
19 |
# File 'app/controllers/users_controller.rb', line 19 def create; end |
#destroy ⇒ Object
Not supported yet
21 |
# File 'app/controllers/users_controller.rb', line 21 def destroy; end |
#index ⇒ Object
8 9 10 11 12 13 14 15 16 |
# File 'app/controllers/users_controller.rb', line 8 def index @users = User.alphabetic. letter(params[:letter]). name_search(params[:search]). tagged_with(params[:tag]). page(params[:page]).per(10) end |
#new ⇒ Object
Supported through devise
19 |
# File 'app/controllers/users_controller.rb', line 19 def new; end |