6 lines
155 B
Ruby
6 lines
155 B
Ruby
class Authentications::EventsController < ApplicationController
|
|
def index
|
|
@events = Current.user.events.order(created_at: :desc).limit(30)
|
|
end
|
|
end
|