Если у меня есть контроллер с skip_before_action
:
class UsersController
skip_before_action :authenticate_request, only: :create
include Confirmable
def create
# ...
end
end
и Confirmable
модулем:
module Confirmable
extend ActiveSupport::Concern
included do
skip_before_action :authenticate_request, only: :confirm_email
end
def confirm_email
# ...
end
end
Перезаписывает ли skip_before_action
в модуле один в классе или добавить к нему, т. е. создание skip_before_action :authenticate_request, only: [:create, :confirm_email]
?