pollen_app/app/controllers/public/m_events_controller.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +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