6 lines
93 B
Ruby
6 lines
93 B
Ruby
class EventsController < ApplicationController
|
|
def index
|
|
@events = Event.all
|
|
end
|
|
end
|