Sha256: 8417f9fd8b0b19aeeffe752dd87c69b081f88b4dd57b4087b2368cace351904f
Contents?: true
Size: 933 Bytes
Versions: 10
Compression:
Stored size: 933 Bytes
Contents
# frozen_string_literal: true module Decidim module UserGroups # Use this class to find the the admins of the given user group with the # "admin" role. It returns memberships. class AdminMemberships < Rectify::Query # Syntactic sugar to initialize the class and return the queried objects. # # user_group - a UserGroup that needs to find its admin users def self.for(user_group) new(user_group).query end # Initializes the class. # # user_group - a UserGroup that needs to find its admin users def initialize(user_group) @user_group = user_group end # Finds the admin users of the user group. # # Returns an ActiveRecord::Relation. def query user_group .memberships .includes(:user) .where(role: :admin) end private attr_reader :user_group end end end
Version data entries
10 entries across 10 versions & 1 rubygems