diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-07-19 11:59:04 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-19 04:59:04 +0200 |
commit | 716f4cb11c0a1cafd4def7beeba5c938abe56fc5 (patch) | |
tree | 39fc660ad10318fc4b2ec88c3a9b752d0a3e3001 /config | |
parent | a5a07da8926589647160ac642a8e082bbeca4451 (diff) |
Add feature to revoke sessions (#4259)
Diffstat (limited to 'config')
-rw-r--r-- | config/locales/en.yml | 2 | ||||
-rw-r--r-- | config/routes.rb | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml index 4cb536223..ff02226ac 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -397,6 +397,8 @@ en: windows: Windows windows_mobile: Windows Mobile windows_phone: Windows Phone + revoke: Revoke + revoke_success: Session successfully revoked title: Sessions settings: authorized_apps: Authorized apps diff --git a/config/routes.rb b/config/routes.rb index 60234a9e6..2aa89f16d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -74,6 +74,8 @@ Rails.application.routes.draw do resource :follower_domains, only: [:show, :update] resource :delete, only: [:show, :destroy] + + resources :sessions, only: [:destroy] end resources :media, only: [:show] |