nesquena/rabl

View on GitHub
fixtures/ashared/controllers_rails_5/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class UsersController < ApplicationController
  respond_to :json

  def index
    @users = User.order('username ASC').load
  end

  def show
    @user = User.find(params[:id])
  end
end