basic MatchController

This commit is contained in:
Daniel Schädler 2018-11-12 17:39:06 +01:00 committed by Malaber
parent cc3377b673
commit bf0e88a5fc
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# frozen_string_literal: true
class MatchController < ApplicationController
def get
id = params[:id]
Match
end
end