Class: Decidim::TimeoutsController
- Inherits:
-
ApplicationController
- Object
- DecidimController
- ApplicationController
- Decidim::TimeoutsController
- Defined in:
- app/controllers/decidim/timeouts_controller.rb
Overview
Tells/Extends time before inactivity warning or automatic logout.
Instance Method Summary collapse
-
#heartbeat ⇒ Object
If user wants to continue session after inactivity warning.
- #seconds_until_timeout ⇒ Object
Methods included from UserBlockedChecker
#check_user_block_status, #check_user_not_blocked
Methods included from NeedsSnippets
Methods included from HttpCachingDisabler
Methods included from HasStoredPath
#skip_store_location?, #store_current_location
Methods included from RegistersPermissions
Methods included from NeedsOrganization
enhance_controller, extended, included
Instance Method Details
#heartbeat ⇒ Object
If user wants to continue session after inactivity warning.
21 22 23 24 25 |
# File 'app/controllers/decidim/timeouts_controller.rb', line 21 def heartbeat respond_to do |format| format.js end end |
#seconds_until_timeout ⇒ Object
13 14 15 16 17 18 |
# File 'app/controllers/decidim/timeouts_controller.rb', line 13 def seconds_until_timeout time_remaining = current_user ? Decidim.config.expire_session_after - (Time.current - Time.zone.at(user_session["last_request_at"])) : 0 respond_to do |format| format.json { render json: { seconds_remaining: time_remaining.to_i }, status: :ok } end end |