]> git.openstreetmap.org Git - rails.git/commitdiff
Serve an updated TOTP token with the browse query response
authorTom Hughes <tom@compton.nu>
Mon, 25 Oct 2021 19:25:46 +0000 (20:25 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 25 Oct 2021 19:28:53 +0000 (20:28 +0100)
app/controllers/browse_controller.rb

index 50d0ae0a545e60b130331aabbbeb5764331a540c..6c5336908605448679b2111295883862da9c1e03 100644 (file)
@@ -5,6 +5,7 @@ class BrowseController < ApplicationController
   before_action :set_locale
   before_action -> { check_database_readable(:need_api => true) }
   before_action :require_oauth
+  before_action :update_totp, :only => [:query]
   around_action :web_timeout
   authorize_resource :class => false
 
@@ -88,4 +89,6 @@ class BrowseController < ApplicationController
   rescue ActiveRecord::RecordNotFound
     render :action => "not_found", :status => :not_found
   end
+
+  def query; end
 end