summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/active_sessions_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/profiles/active_sessions_controller.rb')
-rw-r--r--app/controllers/profiles/active_sessions_controller.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/controllers/profiles/active_sessions_controller.rb b/app/controllers/profiles/active_sessions_controller.rb
new file mode 100644
index 00000000000..f0cdc228366
--- /dev/null
+++ b/app/controllers/profiles/active_sessions_controller.rb
@@ -0,0 +1,14 @@
+class Profiles::ActiveSessionsController < Profiles::ApplicationController
+ def index
+ @sessions = ActiveSession.list(current_user)
+ end
+
+ def destroy
+ ActiveSession.destroy(current_user, params[:id])
+
+ respond_to do |format|
+ format.html { redirect_to profile_active_sessions_url, status: 302 }
+ format.js { head :ok }
+ end
+ end
+end