basic_app/app/controllers/public/m_events_controller.rb
Nicolas Bally fd027c16c1 initial
2020-04-21 21:53:16 +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