~cytrogen/masto-fe

ref: 85057865b4e6ce8ec09feee84ceb6f931300548e masto-fe/app/controllers/settings/sessions_controller.rb -rw-r--r-- 469 bytes
85057865 — jsgoldstein Update Account Search to prioritize username over display name (#26623) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class Settings::SessionsController < Settings::BaseController
  skip_before_action :require_functional!

  before_action :require_not_suspended!
  before_action :set_session, only: :destroy

  def destroy
    @session.destroy!
    flash[:notice] = I18n.t('sessions.revoke_success')
    redirect_to edit_user_registration_path
  end

  private

  def set_session
    @session = current_user.session_activations.find(params[:id])
  end
end