mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 03:25:14 +00:00
10 lines
299 B
Ruby
10 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
|