[group collection] default to hot posts
This commit is contained in:
parent
d35550e535
commit
1e5d12497c
|
@ -32,7 +32,7 @@ class Api::V1::Timelines::GroupCollectionController < Api::BaseController
|
||||||
private
|
private
|
||||||
|
|
||||||
def set_sort_type
|
def set_sort_type
|
||||||
@sort_type = 'newest'
|
@sort_type = 'hot'
|
||||||
@sort_type = params[:sort_by] if [
|
@sort_type = params[:sort_by] if [
|
||||||
'hot',
|
'hot',
|
||||||
'newest',
|
'newest',
|
||||||
|
@ -43,7 +43,7 @@ class Api::V1::Timelines::GroupCollectionController < Api::BaseController
|
||||||
'top_yearly',
|
'top_yearly',
|
||||||
'top_all_time',
|
'top_all_time',
|
||||||
].include? params[:sort_by]
|
].include? params[:sort_by]
|
||||||
|
|
||||||
if @collection_type === 'featured' && (@sort_type == 'newest' || @sort_type == 'recent')
|
if @collection_type === 'featured' && (@sort_type == 'newest' || @sort_type == 'recent')
|
||||||
@sort_type = 'hot'
|
@sort_type = 'hot'
|
||||||
end
|
end
|
||||||
|
@ -66,7 +66,7 @@ class Api::V1::Timelines::GroupCollectionController < Api::BaseController
|
||||||
elsif @collection_type == 'member' && !current_account.nil?
|
elsif @collection_type == 'member' && !current_account.nil?
|
||||||
@groupIds = current_account.groups.pluck(:id)
|
@groupIds = current_account.groups.pluck(:id)
|
||||||
end
|
end
|
||||||
|
|
||||||
if current_account
|
if current_account
|
||||||
SortingQueryBuilder.new.call(@sort_type, @groupIds, params[:page]).reject {|status|
|
SortingQueryBuilder.new.call(@sort_type, @groupIds, params[:page]).reject {|status|
|
||||||
FeedManager.instance.filter?(:home, status, current_account.id)
|
FeedManager.instance.filter?(:home, status, current_account.id)
|
||||||
|
|
Loading…
Reference in New Issue