--- /dev/null
+# frozen_string_literal: true
+
+class Settings::SessionsController < ApplicationController
+ 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
%th= t 'sessions.browser'
%th= t 'sessions.ip'
%th= t 'sessions.activity'
+ %td
%tbody
- @sessions.each do |session|
%tr
= t 'sessions.current_session'
- else
%time.time-ago{ datetime: session.updated_at.iso8601, title: l(session.updated_at) }= l(session.updated_at)
+ %td
+ - if request.session['auth_id'] != session.session_id
+ = table_link_to 'times', t('sessions.revoke'), settings_session_path(session), method: :delete
windows: Windows
windows_mobile: Windows Mobile
windows_phone: Windows Phone
+ revoke: Revoke
+ revoke_success: Session successfully revoked
title: Sessions
settings:
authorized_apps: Authorized apps
resource :follower_domains, only: [:show, :update]
resource :delete, only: [:show, :destroy]
+
+ resources :sessions, only: [:destroy]
end
resources :media, only: [:show]