flower-pot/veterator

View on GitHub
app/controllers/users/search_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Users::SearchController < ApplicationController
  def index
    @users = User.all

    respond_to do |format|
      format.json { render json: @users }
    end
  end
end