clair_app/app/controllers/public/m_events_controller.rb
Nicolas Bally c2f8ec2efb initial
2020-10-10 00:28:38 +02:00

18 lines
204 B
Ruby

class Public::MEventsController < ApplicationController
layout :get_public_layout
def index
@m_events = MEvent.all
end
def show
@m_event = MEvent.find(params[:id])
end
end