Files
mozo-backend/app/controllers/users/tables_controller.rb
T
2014-03-30 15:55:22 +02:00

9 lines
206 B
Ruby

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