2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
class JoinedGroupsFinder
|
2016-06-02 11:05:42 +05:30
|
|
|
def initialize(user)
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
|
|
|
# Finds the groups of the source user, optionally limited to those visible to
|
|
|
|
# the current user.
|
|
|
|
def execute(current_user = nil)
|
2018-11-08 19:23:39 +05:30
|
|
|
@user.authorized_groups
|
|
|
|
.public_or_visible_to_user(current_user)
|
|
|
|
.order_id_desc
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
end
|