mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
8 lines
223 B
Ruby
8 lines
223 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::LoginActivitiesController < Settings::BaseController
|
|
def index
|
|
@login_activities = LoginActivity.where(user: current_user).order(id: :desc).page(params[:page])
|
|
end
|
|
end
|