mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 09:56:03 +01:00
18 lines
728 B
Ruby
18 lines
728 B
Ruby
# frozen_string_literal: true
|
|
|
|
module User::RelationshipMethods
|
|
include CursorPaginatable
|
|
|
|
define_cursor_paginator :cursored_following_relationships, :ordered_following_relationships
|
|
define_cursor_paginator :cursored_follower_relationships, :ordered_follower_relationships
|
|
|
|
# @return [ActiveRecord::Relation<Relationships::Follow>] List of the user's following relationships
|
|
def ordered_following_relationships
|
|
active_follow_relationships.reverse_order.includes(target: [:profile])
|
|
end
|
|
|
|
# @return [ActiveRecord::Relation<Relationships::Follow>] List of the user's follower relationships
|
|
def ordered_follower_relationships
|
|
passive_follow_relationships.reverse_order.includes(source: [:profile])
|
|
end
|
|
end
|