Updated SearchService to allow staff to view more content
• Updated: - SearchService to allow staff to view more content
This commit is contained in:
parent
e82f89b7ac
commit
763a0cb10b
|
@ -4,8 +4,13 @@ class SearchService < BaseService
|
||||||
def call(query, account, limit, options = {})
|
def call(query, account, limit, options = {})
|
||||||
@query = query&.strip
|
@query = query&.strip
|
||||||
@account = account
|
@account = account
|
||||||
|
@account = account
|
||||||
@options = options
|
@options = options
|
||||||
@limit = limit.to_i
|
if @account.user.staff?
|
||||||
|
@limit = 100
|
||||||
|
else
|
||||||
|
@limit = limit.to_i
|
||||||
|
end
|
||||||
@offset = options[:type].blank? ? 0 : options[:offset].to_i
|
@offset = options[:type].blank? ? 0 : options[:offset].to_i
|
||||||
@resolve = options[:resolve] || false
|
@resolve = options[:resolve] || false
|
||||||
@onlyVerified = options[:onlyVerified] || false
|
@onlyVerified = options[:onlyVerified] || false
|
||||||
|
@ -15,8 +20,8 @@ class SearchService < BaseService
|
||||||
|
|
||||||
if @query.present?
|
if @query.present?
|
||||||
results[:accounts] = perform_accounts_search! if account_searchable?
|
results[:accounts] = perform_accounts_search! if account_searchable?
|
||||||
results[:statuses] = [] # perform_statuses_search! if full_text_searchable? && !account.nil?
|
results[:statuses] = perform_statuses_search! if full_text_searchable? && @account.user.staff?
|
||||||
results[:links] = [] # perform_links_search! if !account.nil?
|
results[:links] = perform_links_search! if @account.user.staff?
|
||||||
results[:groups] = perform_groups_search!
|
results[:groups] = perform_groups_search!
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue