2017-08-17 22:00:37 +05:30
|
|
|
module Search
|
|
|
|
class GroupService < Search::GlobalService
|
|
|
|
attr_accessor :group
|
|
|
|
|
|
|
|
def initialize(user, group, params)
|
|
|
|
super(user, params)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
@default_project_filter = false
|
2017-08-17 22:00:37 +05:30
|
|
|
@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
|