volontariat/voluntary

View on GitHub
app/controllers/voluntary/api/v1/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Voluntary::Api::V1::UsersController < ActionController::Base
  include Voluntary::V1::BaseController

  respond_to :json
 
  def show
    respond_with User.friendly.find(params[:id])
  end
end