Class: UsersController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- UsersController
- Defined in:
- app/controllers/users_controller.rb
Instance Method Summary collapse
-
#index ⇒ Object
GET /users.
Instance Method Details
#index ⇒ Object
GET /users
4 5 6 |
# File 'app/controllers/users_controller.rb', line 4 def index @users = User.where("infractions_count > 0").order("infractions_count DESC") end |