Disable notes search until it can be made scalable
This commit is contained in:
parent
0c3c2e01bf
commit
1e2b99a75b
2 changed files with 59 additions and 46 deletions
|
@ -260,6 +260,11 @@ class NotesController < ApplicationController
|
|||
# Find the notes we want to return
|
||||
@notes = @notes.order("updated_at DESC").limit(result_limit).preload(:comments)
|
||||
|
||||
# Disable notes search until we can make it scalable
|
||||
response.headers['Error'] = "Searching of notes is currently unavailable"
|
||||
render :text => "", :status => :service_unavailable
|
||||
return false
|
||||
|
||||
# Render the result
|
||||
respond_to do |format|
|
||||
format.rss { render :action => :index }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue