turniere-backend/app/controllers/match_controller.rb

9 lines
128 B
Ruby

# frozen_string_literal: true
class MatchController < ApplicationController
def get
id = params[:id]
Match
end
end