From bf0e88a5fce59fdd51a0d696f7e0654bb5e80cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=A4dler?= Date: Mon, 12 Nov 2018 17:39:06 +0100 Subject: [PATCH] basic MatchController --- app/controllers/match_controller.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/controllers/match_controller.rb diff --git a/app/controllers/match_controller.rb b/app/controllers/match_controller.rb new file mode 100644 index 0000000..6d4b6fe --- /dev/null +++ b/app/controllers/match_controller.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +class MatchController < ApplicationController + def get + id = params[:id] + Match + end +end