Files
railsgoat/app/controllers/api/v1/users_controller.rb
T
2014-03-12 12:38:41 -04:00

12 lines
198 B
Ruby

class Api::V1::UsersController < ApplicationController
skip_before_filter :authenticated
respond_to :json
def index
respond_with ({:hi => :world})
end
end