mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 13:36:15 +02:00
Add rate limiting to missing actions
This commit is contained in:
parent
e65d55765a
commit
88090523ff
3 changed files with 7 additions and 4 deletions
|
@ -3,7 +3,7 @@ module Epp
|
|||
skip_authorization_check only: [:hello, :login, :logout]
|
||||
before_action :set_paper_trail_whodunnit
|
||||
|
||||
THROTTLED_ACTIONS = %i[login].freeze
|
||||
THROTTLED_ACTIONS = %i[login hello].freeze
|
||||
include Shunter::Integration::Throttle
|
||||
|
||||
def hello
|
||||
|
|
|
@ -3,8 +3,11 @@ module Repp
|
|||
module Registrar
|
||||
class AccreditationInfoController < BaseController
|
||||
if Feature.allow_accr_endspoints?
|
||||
api :GET, 'repp/v1/registrar/accreditation/get_info'
|
||||
desc 'check login user and return data'
|
||||
THROTTLED_ACTIONS = %i[index].freeze
|
||||
include Shunter::Integration::Throttle
|
||||
|
||||
api :GET, 'repp/v1/registrar/accreditation/get_info'
|
||||
desc 'check login user and return data'
|
||||
|
||||
def index
|
||||
login = current_user
|
||||
|
|
|
@ -6,7 +6,7 @@ module Repp
|
|||
skip_before_action :check_ip_restriction, only: :tara_callback
|
||||
skip_before_action :validate_client_certs, only: :tara_callback
|
||||
|
||||
THROTTLED_ACTIONS = %i[index].freeze
|
||||
THROTTLED_ACTIONS = %i[index tara_callback].freeze
|
||||
include Shunter::Integration::Throttle
|
||||
|
||||
api :GET, 'repp/v1/registrar/auth'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue