summaryrefslogtreecommitdiffstats
path: root/settings/js/settings.js
Commit message (Collapse)AuthorAgeFilesLines
* Move settings to an appChristoph Wurst2019-09-281-96/+0
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Remove arrow function for ie compatibilityJohn Molakvoæ (skjnldsv)2018-11-071-1/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Settings groups to ocsJohn Molakvoæ (skjnldsv)2018-04-251-81/+84
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* fixup! Fixed sharing groups select and fixed searchJohn Molakvoæ (skjnldsv)2018-03-081-2/+0
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Fixed sharing groups select and fixed searchJohn Molakvoæ (skjnldsv)2018-03-081-63/+58
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Start fixing Select2 optionsJoas Schilling2018-03-081-5/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Enable the toggleSelect extension in multi-select dropdownsDaniel Calviño Sánchez2017-07-101-0/+1
| | | | | | | | The toggleSelect extension for Select2 makes possible to unselect items in a multi-select dropdown by clicking on them; this behaviour should be enabled in all the multi-select dropdowns used in the server. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Make it possible to exclude admin groups from groups select2Vincent Petry2016-05-201-5/+10
|
* Fix group select autocompleteRobin Appelman2015-01-061-16/+12
|
* Add REST route for user & group managementLukas Reschke2014-12-081-1/+1
| | | | First step of a somewhat testable user management. - I know, the JSON returns are in an ugly format but the JS expects it that way. So let's keep it that way until we have time to fix the JS in the future.
* Add select2 cache for complete group listVincent Petry2014-09-111-23/+39
| | | | | | | | To avoid making a server request every time the dropdown opens, the whole list of groups are cached (from the last request): Whenever the user types in a search term it will still send server requests.
* Fixed select2 for admin and apps pageVincent Petry2014-09-101-3/+13
| | | | | | Added explicit escaping. Now internally using a pipe symbol as separator for select2, to make it possible to use group names containing commas.
* Added select2 on the apps pageVincent Petry2014-09-091-0/+72
Moved setupGroupsSelect() from admin.js to a common settings.js as OC.Settings.setupGoupsSelect(). Now using select2 as well on the apps page.