def create
    if Ingest.find_by_ingest_id(params[:ingest_id]).present?
      render nothing: true, status: 409 and return
    else
      @ingest = Ingest.new(create_params(params))