19 lines
355 B
Ruby
19 lines
355 B
Ruby
|
module Search
|
||
|
class GroupService < Search::GlobalService
|
||
|
attr_accessor :group
|
||
|
|
||
|
def initialize(user, group, params)
|
||
|
super(user, params)
|
||
|
|
||
|
@group = group
|
||
|
end
|
||
|
|
||
|
def projects
|
||
|
return Project.none unless group
|
||
|
return @projects if defined? @projects
|
||
|
|
||
|
@projects = super.inside_path(group.full_path)
|
||
|
end
|
||
|
end
|
||
|
end
|