Skip to content

Corrected expression to include correct quotes in ES Integration

Vlad Stoianovici requested to merge docs_vlad_es_quotes into master

What does this MR do?

Fixes the quotes around "blobs" in the following expression:

u = User.find_by_username('your-username')
s = SearchService.new(u, {:search => 'search_term', :scope => blobs})
pp s.search_objects.to_a

to

u = User.find_by_username('your-username')
s = SearchService.new(u, {:search => 'search_term', :scope => 'blobs'})
pp s.search_objects.to_a

Related issues

!20778 (merged)

Author's checklist

Review checklist

All reviewers can help ensure accuracy, clarity, completeness, and adherence to the Documentation Guidelines and Style Guide.

1. Primary Reviewer

  • Review by a code reviewer or other selected colleague to confirm accuracy, clarity, and completeness. This can be skipped for minor fixes without substantive content changes.

3. Maintainer

  1. Review by assigned maintainer, who can always request/require the above reviews. Maintainer's review can occur before or after a technical writer review.
  2. Ensure a release milestone is set.

Merge request reports