ProjectEntropy/project-entropy.com

View on GitHub
app/controllers/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class UsersController < ApplicationController
  load_and_authorize_resource

  def index
    @users = User.all
  end
end