holderdeord/hdo-site

View on GitHub
app/controllers/api/hdo/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  module Hdo
    class UsersController < ApiController
      def index
        respond_with User.active.order(:name)
      end

      def show
        respond_with User.active.find(params[:id])
      end
    end
  end
end