|
|
|
@ -1,6 +1,14 @@
|
|
|
|
# frozen_string_literal: true
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
|
|
class RevealAccessTokenController < ApplicationController
|
|
|
|
class RevealAccessTokenController < ApplicationController
|
|
|
|
|
|
|
|
rate_limit to: 4, within: 1.minute, only: %i[create], by: -> { current_user.id }, with: lambda {
|
|
|
|
|
|
|
|
Rollbar.error('Rate limit api key') if defined?(Rollbar)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
render turbo_stream: turbo_stream.replace(:modal, template: 'reveal_access_token/show',
|
|
|
|
|
|
|
|
locals: { error_message: I18n.t(:too_many_attempts) }),
|
|
|
|
|
|
|
|
status: :unprocessable_content
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def show
|
|
|
|
def show
|
|
|
|
authorize!(:manage, current_user.access_token)
|
|
|
|
authorize!(:manage, current_user.access_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|