-
- Downloads
ES: all searches are done but it reqiores lots of refactoring
parent
c0f6df43
No related branches found
No related tags found
Showing
- Gemfile 5 additions, 0 deletionsGemfile
- app/controllers/search_controller.rb 34 additions, 45 deletionsapp/controllers/search_controller.rb
- app/elastic/application_search.rb 33 additions, 40 deletionsapp/elastic/application_search.rb
- app/elastic/issues_search.rb 11 additions, 46 deletionsapp/elastic/issues_search.rb
- app/elastic/merge_requests_search.rb 12 additions, 56 deletionsapp/elastic/merge_requests_search.rb
- app/elastic/milestones_search.rb 63 additions, 0 deletionsapp/elastic/milestones_search.rb
- app/elastic/notes_search.rb 55 additions, 0 deletionsapp/elastic/notes_search.rb
- app/elastic/projects_search.rb 16 additions, 97 deletionsapp/elastic/projects_search.rb
- app/elastic/repositories_search.rb 2 additions, 8 deletionsapp/elastic/repositories_search.rb
- app/elastic/snippets_search.rb 106 additions, 0 deletionsapp/elastic/snippets_search.rb
- app/elastic/users_search.rb 11 additions, 45 deletionsapp/elastic/users_search.rb
- app/elastic/wiki_repositories_search.rb 31 additions, 0 deletionsapp/elastic/wiki_repositories_search.rb
- app/models/group.rb 0 additions, 1 deletionapp/models/group.rb
- app/models/milestone.rb 1 addition, 0 deletionsapp/models/milestone.rb
- app/models/note.rb 1 addition, 0 deletionsapp/models/note.rb
- app/models/project.rb 4 additions, 0 deletionsapp/models/project.rb
- app/models/project_wiki.rb 3 additions, 0 deletionsapp/models/project_wiki.rb
- app/models/repository.rb 53 additions, 1 deletionapp/models/repository.rb
- app/models/snippet.rb 1 addition, 0 deletionsapp/models/snippet.rb
- app/services/search/global_service.rb 5 additions, 1 deletionapp/services/search/global_service.rb
... | ... | @@ -91,6 +91,11 @@ gem "six", '~> 0.2.0' |
# Seed data | ||
gem "seed-fu", '~> 2.3.5' | ||
# Search | ||
gem 'elasticsearch-model' | ||
gem 'elasticsearch-rails' | ||
gem 'gitlab-elasticsearch-git', require: "elasticsearch/git" | ||
# Markdown and HTML processing | ||
gem 'html-pipeline', '~> 1.11.0' | ||
gem 'task_list', '~> 1.0.2', require: 'task_list/railtie' | ||
... | ... |
app/elastic/notes_search.rb
0 → 100644
app/elastic/snippets_search.rb
0 → 100644
app/elastic/wiki_repositories_search.rb
0 → 100644