9 lines
201 B
Ruby
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
|