summaryrefslogtreecommitdiff
path: root/app/controllers/projects/autocomplete_sources_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42GitLab Bot2022-05-191-1/+2
|
* Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42GitLab Bot2022-02-181-1/+10
|
* Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot2021-12-201-0/+2
|
* Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot2021-11-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-211-0/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-131-0/+2
|
* Prevent disclosing project milestone titlesFelipe Artur2019-02-251-0/+2
| | | | | Prevent unauthorized users having access to milestone titles through autocomplete endpoint.
* Remove instance autocomplete_service variablece-7472-epics-autocompleteJarka Košanová2018-11-061-10/+8
|
* Resolve "Drop down filter for project snippets"Fabian Schneider2018-10-051-0/+4
|
* Enable even more frozen string in app/controllersgfyoung2018-09-251-0/+2
| | | | | | | | | | | | Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
* Implement QuickActions::TargetServicePeter Leitzen2018-08-101-2/+4
|
* Move finding autocompletion targets into AutocompleteServicePeter Leitzen2018-08-101-9/+2
|
* Build noteables in AutocompleteSourcesController#targetPeter Leitzen2018-08-101-2/+2
|
* Backport of EE changes in ↵Mark Chao2018-07-061-1/+1
| | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/6195 Refactor AutocompleteSources#label: 1. The return value was inconsistent, sometimes returning a hash and sometimes returning an ActiveModel. 2. It was inconsistent with respect to other methods in the class since they all return ActiveModels.
* Port `read_cross_project` ability from EEBob Van Landuyt2018-02-221-2/+2
|
* Limit autocomplete menu to applied labelsVitaliy @blackst0ne Klachkov2017-11-281-8/+8
|
* Use native unicode emojisEric Eastwood2017-03-061-5/+1
| | | | | | | | | | | | | | | | | | | | - gl_emoji for falling back to image/css-sprite when the browser doesn't support an emoji - Markdown rendering (Banzai filter) - Autocomplete - Award emoji menu - Perceived perf - Immediate response because we now build client-side - Update `digests.json` generation in gemojione rake task to be more useful and include `unicodeVersion` MR: !9437 See issues - #26371 - #27250 - #22474
* Changed autocomplete_sources into an action that returns a single 'at' type ↵18435-autocomplete-is-not-performantLuke Bennett2016-12-151-0/+48
of sources at a time Finished up autocomplete_sources action and added frontend to fetch data only when its needed Added wait_for_ajax to specs Fixed builds and improved the setup/destroy lifecycle Changed global namespace and DRYed up loading logic Added safety for accidentally loading data twice Removed destroy as its not necessary and is messing with click events from a blur race condition Created AutocompleteSourcesController and updated routes Fixed @undefined from tabbing before load ends Disable tabSelectsMatch until we have loaded data Review changes