class Account::Webhooks::Outgoing::DeliveryAttemptsController

def delivery_attempt_params

Never trust parameters from the scary internet, only allow the white list through.
def delivery_attempt_params
  strong_params = params.require(:webhooks_outgoing_delivery_attempt).permit(
    :response_code,
    :response_body,
    :response_message,
    :error_message,
    :attempt_number,
    # 🚅 super scaffolding will insert new fields above this line.
    # 🚅 super scaffolding will insert new arrays above this line.
  )
  # 🚅 super scaffolding will insert processing for new fields above this line.
  strong_params
end