Files
mozo-backend/app/controllers/users/tables_controller.rb
T
2015-09-02 15:52:48 +02:00

9 lines
201 B
Ruby

module Users
class TablesController < Users::ApplicationController
def show
@table = Table.find(params[:id])
render json: @table, serializer: Users::TableSerializer
end
end
end