mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-14 05:41:00 +00:00
11 lines
157 B
Ruby
11 lines
157 B
Ruby
class MatchProposalsController < ApplicationController
|
|
def index
|
|
@match = Match.find(params[:match_id])
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
end
|
|
end
|