Files
vault171/app/controllers/authentications/events_controller.rb
David Böhm 6f192274ab
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
Big first commit
authentication-zero and first layout
2026-05-21 02:54:39 +02:00

6 lines
155 B
Ruby

class Authentications::EventsController < ApplicationController
def index
@events = Current.user.events.order(created_at: :desc).limit(30)
end
end