Class: Decidim::Votings::Admin::AdminUsers
- Inherits:
-
Query
- Object
- Query
- Decidim::Votings::Admin::AdminUsers
- Defined in:
- app/queries/decidim/votings/admin/admin_users.rb
Overview
A class used to find the admins for a voting or an organization votings.
Class Method Summary collapse
-
.for(voting) ⇒ Object
Syntactic sugar to initialize the class and return the queried objects.
-
.for_organization(organization) ⇒ Object
Syntactic sugar to initialize the class and return the queried objects.
Instance Method Summary collapse
-
#initialize(voting, organization = nil) ⇒ AdminUsers
constructor
Initializes the class.
-
#query ⇒ Object
Finds organization admins and the users with role admin for the given voting.
Constructor Details
#initialize(voting, organization = nil) ⇒ AdminUsers
Initializes the class.
voting - a voting that needs to find its voting admins organization - an organization that needs to find its voting admins
26 27 28 29 |
# File 'app/queries/decidim/votings/admin/admin_users.rb', line 26 def initialize(voting, organization = nil) @voting = voting @organization = voting&.organization || organization end |
Class Method Details
.for(voting) ⇒ Object
Syntactic sugar to initialize the class and return the queried objects.
voting - a voting that needs to find its voting admins
11 12 13 |
# File 'app/queries/decidim/votings/admin/admin_users.rb', line 11 def self.for(voting) new(voting).query end |
.for_organization(organization) ⇒ Object
Syntactic sugar to initialize the class and return the queried objects.
organization - an organization that needs to find its voting admins
18 19 20 |
# File 'app/queries/decidim/votings/admin/admin_users.rb', line 18 def self.for_organization(organization) new(nil, organization).query end |
Instance Method Details
#query ⇒ Object
Finds organization admins and the users with role admin for the given voting.
Returns an ActiveRecord::Relation.
34 35 36 |
# File 'app/queries/decidim/votings/admin/admin_users.rb', line 34 def query organization.admins end |