mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 11:11:11 +02:00
11 lines
299 B
Ruby
11 lines
299 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::LoginActivitiesController < Settings::BaseController
|
|
skip_before_action :check_self_destruct!
|
|
skip_before_action :require_functional!
|
|
|
|
def index
|
|
@login_activities = current_user.login_activities.order(id: :desc).page(params[:page])
|
|
end
|
|
end
|