Add rate limiting to missing actions

This commit is contained in:
Thiago Youssef 2022-08-07 11:31:58 -03:00 committed by olegphenomenon
parent e65d55765a
commit 88090523ff
3 changed files with 7 additions and 4 deletions

View file

@ -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