Class: Projects::ProjectGroupLinksFinder
- Inherits:
-
Object
- Object
- Projects::ProjectGroupLinksFinder
- Defined in:
- app/finders/projects/project_group_links_finder.rb
Instance Method Summary collapse
-
#execute ⇒ ActiveRecord::Relation
Executes the finder and returns group links.
-
#initialize(project, params = {}) ⇒ ProjectGroupLinksFinder
constructor
A new instance of ProjectGroupLinksFinder.
Constructor Details
#initialize(project, params = {}) ⇒ ProjectGroupLinksFinder
Returns a new instance of ProjectGroupLinksFinder.
10 11 12 13 |
# File 'app/finders/projects/project_group_links_finder.rb', line 10 def initialize(project, params = {}) @project = project @params = params end |
Instance Method Details
#execute ⇒ ActiveRecord::Relation
Executes the finder and returns group links.
18 19 20 |
# File 'app/finders/projects/project_group_links_finder.rb', line 18 def execute by_search(collection) end |