mirror of
https://github.com/mastodon/mastodon.git
synced 2025-10-05 16:42:47 +00: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
|