ensl.org/app/controllers/match_proposals_controller.rb

12 lines
157 B
Ruby
Raw Normal View History

2017-05-01 14:57:32 +00:00
class MatchProposalsController < ApplicationController
def index
2017-05-05 15:17:00 +00:00
@match = Match.find(params[:match_id])
2017-05-01 14:57:32 +00:00
end
def new
end
def create
end
end