class Account::Webhooks::Outgoing::EndpointsController

def endpoint_params

Never trust parameters from the scary internet, only allow the white list through.
def endpoint_params
  strong_params = params.require(:webhooks_outgoing_endpoint).permit(
    :name,
    :url,
    :scaffolding_absolutely_abstract_creative_concept_id,
    # 🚅 super scaffolding will insert new fields above this line.
    event_type_ids: [],
    # 🚅 super scaffolding will insert new arrays above this line.
  )
  assign_select_options(strong_params, :event_type_ids)
  # 🚅 super scaffolding will insert processing for new fields above this line.
  strong_params
end