debian-mirror-gitlab/app/controllers/profiles/active_sessions_controller.rb

8 lines
203 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
class Profiles::ActiveSessionsController < Profiles::ApplicationController
def index
2019-03-13 22:55:13 +05:30
@sessions = ActiveSession.list(current_user).reject(&:is_impersonated)
2018-10-15 14:42:47 +05:30
end
end