summaryrefslogtreecommitdiffstats
path: root/settings/js/users
Commit message (Collapse)AuthorAgeFilesLines
* [stable9.1] Revert invalid commits from master->stable9.1 merge (#25420)Vincent Petry2016-07-081-16/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Revert "Merge pull request #25240 from owncloud/remove-svg" This reverts commit 8b8d2b679a12f703141de9da71340f1f02151f3d, reversing changes made to a35747b6fa8f7704bf7333f16a2b867b76acb187. * Revert "Merge pull request #25253 from owncloud/users-fixotherquotadropdown" This reverts commit a35747b6fa8f7704bf7333f16a2b867b76acb187, reversing changes made to a573b6863cbb4eb21feb7fe5a17a9b8fc60cf059. * Revert "Merge pull request #25314 from owncloud/files_external-backends-config" This reverts commit a573b6863cbb4eb21feb7fe5a17a9b8fc60cf059, reversing changes made to 8147eefaeba3822c9331283e973006ad3aeac1f5. * Revert "Add all properties while creating a subscription (#25318)" This reverts commit aaf4c3073af2511ab895e982cadae8dc6a143e55. * Revert "Merge pull request #25276 from owncloud/delete-own-session-token" This reverts commit e42ce62ce2855c95861eeae669508e5c20f99be4, reversing changes made to aaf4c3073af2511ab895e982cadae8dc6a143e55. * Revert "Merge pull request #25262 from owncloud/fed-sharing-error" This reverts commit 027715f9acba4dc314a7e4c63ac41a58d4e33f22, reversing changes made to e42ce62ce2855c95861eeae669508e5c20f99be4.
* Merge pull request #25240 from owncloud/remove-svgMorris Jobke2016-07-041-1/+1
|\ | | | | Remove SVG fallback
| * remove svg classesHendrik Leppelsack2016-07-011-1/+1
| |
* | Prevent negative or non-number values in quota inputVincent Petry2016-06-241-0/+6
| |
* | Fix "Other" value handling in quota dropdown in users pageVincent Petry2016-06-231-3/+9
|/ | | | | Prevents "other" value to be deleted. When appending custom value, put it above the "other" entry.
* decrease initial users to load to 50Jörn Friedrich Dreyer2016-06-071-1/+1
| | | | Prevents timeouts on the initial loading of users. proper fix will be in https://github.com/owncloud/core/pull/10994 Workaround for https://github.com/owncloud/core/issues/24734
* Pass on the error message from the user manager to the UI (#24526)Joas Schilling2016-05-111-1/+1
|
* Properly escape URLLukas Reschke2016-04-181-1/+1
| | | | Fixes https://github.com/owncloud/core/issues/23499
* misc: Fix some typosStefan Weil2016-04-121-1/+1
| | | | | | Some of them were found by codespell. Signed-off-by: Stefan Weil <sw@weilnetz.de>
* Add loading feedback for email change in user managementMorris Jobke2016-03-161-9/+24
| | | | | | | | * show loading indicator while the request is running * change value after the request succeed - not before and undo maybe wrong changes * move markup to HTML template * show notification temporarily
* Use the notification instead of the disruptive popupJoas Schilling2016-02-222-16/+18
|
* Allow to delete the email address in user managementMorris Jobke2016-02-051-18/+14
|
* Keep scroll position in users page when sortingVincent Petry2016-01-071-1/+8
| | | | | | | | When sorting, some browsers like Chrome will lose the scroll position, possibly because the sorting code is touching the DOM elements. This fix saves the scroll position before sorting and sets it back afterwards.
* Add a default size to the avatar placeholdersRoeland Jago Douma2015-12-171-1/+1
| | | | | This removed the need to do an avatar request on the "empty" row in the user settings.
* Update users.jsmichag862015-12-171-1/+1
|
* Merge pull request #20978 from owncloud/fix-dont-show-unsaved-values-in-usermgmtThomas Müller2015-12-111-3/+5
|\ | | | | reset mailadress/displayname on blur
| * reset mailadress/displayname on blurmichag862015-12-071-3/+5
| |
* | Do not request an avatar if there is noneRoeland Jago Douma2015-12-041-2/+6
|/
* [Avatars] JS should not load same avatar twiceRoeland Jago Douma2015-12-041-2/+1
| | | | | | | | | Old code first dit an ajax request to the avatar. Then a new image object with the same src was created and since we do not cache avatars yet :( this resulted in 2 sequential requests to the exact same URL Now if you set the displayname it will first set the placeholder and then load the avatar in the background. Only once this time!
* Moved changedisplayname to usercontrollerRoeland Jago Douma2015-11-201-1/+1
| | | | | Killed the old static route to change a users display name and moved it to a properly testable controller.
* Fix #18072Thomas Müller2015-11-101-10/+2
|
* Fix everyone count for subadminsVincent Petry2015-10-291-3/+3
| | | | Also moved the logic to the UsersController
* Initially load at least 250 usersJörn Friedrich Dreyer2015-10-281-6/+11
|
* Delete last undoable user before user creationVincent Petry2015-10-072-31/+43
|
* Modify the group user count when changing membership of a userJoas Schilling2015-10-022-4/+17
|
* Save the settings in the user management pageRoeland Jago Douma2015-09-251-0/+29
| | | | | | | Store the setting in the user managerment page (e.g. show e-mail address). Fixes #12727
* Merge pull request #18403 from owncloud/do-not-delete-group-if-emptyMorris Jobke2015-08-191-11/+0
|\ | | | | Do not delete group if empty, hide delete icon for group admin
| * do not remove empty group in gui by jsmichag862015-08-191-11/+0
| |
* | Merge pull request #18114 from owncloud/fix-delete-user-feedbackMorris Jobke2015-08-191-10/+10
|\ \ | |/ |/| [user mgnt] fix delete user feedback on failure
| * [user mgnt] fix delete user feedback on failureMorris Jobke2015-08-071-10/+10
| | | | | | | | * fixes #18099
* | replace tipsys with tooltipsHendrik Leppelsack2015-08-121-6/+6
|/
* use the main search box to filter users in user managementRobin Appelman2015-08-053-42/+29
|
* Trigger "apprendered" event in users pageVincent Petry2015-07-291-0/+4
| | | | | This will properly update the controls bar width and display the search box initially.
* Only sort by group name when LDAP is involvedJoas Schilling2015-06-161-4/+27
|
* Always keep "Everyone" and "admin" at the top of the listJoas Schilling2015-06-161-0/+14
|
* Sort user groups by group name and hide the user countJoas Schilling2015-05-181-1/+2
|
* remove slow fade animation for remaining tipsy tooltipsJan-Christoph Borchardt2015-04-151-1/+1
|
* remove slow fade animation for tipsy tooltipJan-Christoph Borchardt2015-04-151-1/+1
|
* Fix user listMorris Jobke2015-04-131-3/+3
| | | | | * the name cell was changed from td to th because of accessibility issues - this adjusts the CSS and JS to behave like before
* Initial fix for #15494Roeland Jago Douma2015-04-121-1/+1
|
* Don't append user in a filtered list if groups don't matchVincent Petry2015-03-271-0/+4
|
* disable submit button while groupname is emptyRobin Appelman2015-03-181-0/+13
|
* fix user loadingArthur Schiwon2015-02-041-1/+6
|
* Add value if restore of data is possible for a userMorris Jobke2015-01-271-1/+16
| | | | | | | | | | | * reason: nice to know before password change in user management * restore is possible: * encryption is disabled * encryption is enabled, admin and user has checked the restore option * if not possible: * highlight users row in red once the admin wants to change the password * show also a little tipsy
* do not clear fields until request return successSugaroverdose2015-01-201-1/+2
|
* Drop the hide and show of new users in user listMorris Jobke2015-01-161-7/+0
| | | | | | | * causes the first load after the initial load to hide some users in the viewport and showing them again, but with a scrolled up viewport * causes higher load for nearly never visible effects * fixes #12962
* Autoescape of placeholders in t() and p() - for JSMorris Jobke2015-01-071-1/+1
| | | | | | | * add disableEscape parameter to disable this functionality * drop usage of escapeHTML() that is now done inside t() * add unit test for escaped and not escaped placeholder * proper JSDoc
* Mail address of users is now changable in the user managementMorris Jobke2014-12-181-38/+96
| | | | | | | | | | | * introduced new route settings/users/{id}/mailAddress * kept old responses * better error messages * dropped lostpassword.php from settings/ajax * cleaned up the UserList.add() and hand in user object instead of each attribute as another parameter * check for change permission of mail address * proper response messages
* Merge pull request #12870 from owncloud/send-mail-new-userThomas Müller2014-12-181-2/+21
|\ | | | | Send mail for new users
| * Send mail for new usersMorris Jobke2014-12-161-2/+21
| | | | | | | | | | | | * supply mail address * send mail with username and URL to that mail address * option to temporary enable this feature