summaryrefslogtreecommitdiffstats
path: root/settings/templates/users
Commit message (Collapse)AuthorAgeFilesLines
* fix capitalization of text in users managementJan-Christoph Borchardt2016-07-283-8/+8
|
* remove svg classesHendrik Leppelsack2016-07-012-5/+5
|
* Merge pull request #22929 from owncloud/bugfix-removequota-subadminsVincent Petry2016-05-241-5/+6
|\ | | | | Bugfix removequota subadmins
| * Fix default quota field from reviewsVincent Petry2016-05-201-2/+2
| |
| * Removed default quota for subadminsprastut2016-03-081-1/+6
| |
| * Removed default quota for subadminsprastut2016-03-081-6/+2
| |
* | Add loading feedback for email change in user managementMorris Jobke2016-03-161-1/+1
|/ | | | | | | | * 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
* apply new checkbox style in users settingsHendrik Leppelsack2015-10-291-5/+5
|
* Save the settings in the user management pageRoeland Jago Douma2015-09-251-5/+10
| | | | | | | Store the setting in the user managerment page (e.g. show e-mail address). Fixes #12727
* hide delete icon on group for subadminsmichag862015-08-181-0/+2
| | | because they cannot delete a group
* use the main search box to filter users in user managementRobin Appelman2015-08-051-3/+0
|
* Only sort by group name when LDAP is involvedJoas Schilling2015-06-161-1/+1
|
* fixing #15397Volker E2015-04-041-13/+13
|
* fixing #15396 accessibility of table#userlistVolker E2015-04-041-12/+12
|
* Mail address of users is now changable in the user managementMorris Jobke2014-12-182-1/+12
| | | | | | | | | | | * 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
* Send mail for new usersMorris Jobke2014-12-162-0/+9
| | | | | | * supply mail address * send mail with username and URL to that mail address * option to temporary enable this feature
* Show user backend in user managementMorris Jobke2014-12-122-8/+20
| | | | | | | * add switch to settings to show user backend * user classes for headers and rows to unify the show/hide statement * add user backend to response of user create request * proper markup in settings area
* move loading of JS and CSS to templateMorris Jobke2014-12-121-0/+13
|
* remove PHP generated user list and move all to the existing JS partMorris Jobke2014-12-121-70/+16
|
* User management search just searches users - adjust label of input field - ↵Morris Jobke2014-11-181-1/+1
| | | | fixes #10229
* Login Name -> Username in user managementMorris Jobke2014-11-101-1/+1
|
* Adding translations for settingsThomas Müller2014-10-291-1/+3
|
* "Group admin" default label (issue #7706)Sebastian Bolt2014-10-221-3/+3
| | | | | | Changed the column header to "Group Admin for" and the default value of the multiselect box to "no group" if user is not a groupadmin for any group.
* Using countUsers method to return true count of usersClark Tomlinson2014-09-051-3/+3
|
* user mgmt: move 'Show storage location' and 'Show last log in' to settings areaJan-Christoph Borchardt2014-08-293-46/+46
|
* Adds 2 checkboxes at the top of userlist in the settings, to display/hide ↵Stephane V2014-08-281-1/+12
| | | | | | optional columns This fixes #9367.
* it does not affect gravity on planet earth, but only for tipsyArthur Schiwon2014-08-131-1/+1
|
* make singleselect check for gravity wish, and make it south for default quotaArthur Schiwon2014-08-121-1/+1
|
* Use global apps slide toggle logicVincent Petry2014-08-121-2/+2
| | | | | Remove local app settings slide logic and make it use the global one triggered by the "data-apps-slide-toggle" attribute.
* Fixed JS and CSS issues in users pageVincent Petry2014-07-171-2/+2
| | | | | | - Renamed "delete" to "deleteEntry" to make IE8 happy. - Added missing "svg" class for the "+" button - Added height to "+" button but was unable to properly align it
* increase/decrease everyone count on user creation/deletionArthur Schiwon2014-07-091-1/+1
|
* increment group counters when a user is createdArthur Schiwon2014-07-091-1/+1
|
* Better Logic to display user count for everyone.raghunayyar2014-06-241-1/+3
|
* Make sure last seen tooltip always appears even after searching and filteringArthur Schiwon2014-06-191-2/+2
|
* unify controls bar, remove duplicate from user managementJan-Christoph Borchardt2014-06-061-1/+1
|
* fix related layout issues in user managementJan-Christoph Borchardt2014-06-041-1/+1
|
* fix grouplist behaviour (blank after filtering)Arthur Schiwon2014-06-021-1/+1
|
* remove group rename stuff, there is not support in the backends yet. to do ↵Arthur Schiwon2014-06-021-6/+1
| | | | for oc8.
* user mgmt: hide group rename function because it’s not supported in the ↵Jan-Christoph Borchardt2014-06-021-2/+5
| | | | backend yet
* Javascript cleanup for groups.ringmaster2014-06-021-7/+7
|
* Rebase cleanup.ringmaster2014-06-021-1/+0
| | | | | Removing code that should not have been restored. Originally removed in 45fd8f6d.
* Fix broken span.ringmaster2014-06-021-0/+1
|
* Add the admin group to the group list data.ringmaster2014-06-021-0/+3
| | | | | | Fixes the admin group disappearing from the list when updating the display as the result of a search. This group data should probably be managed on the page entirely by the javascript GroupList object, but this seems like the interim method.
* More specific selectors, javascript cleanup.ringmaster2014-06-022-3/+3
| | | | | | | | | | | | | | | * Assigned jQuery selector results to variables for speed. * Moved all .attr('data') calls to .data() calls. * Added :data(uid) selector. * Split the multiselect checkhandlers into separate functions. * De-duped click event on password change/img. * Used fluent interface on jQuery object for event binding. * Removed redundant tag names in class selectors. * Fixed incorrect date display for last login. * Added Userlist.has() to search for uid. * General code convention compliance fixes. to-do: Group dropdowns currently don't add the admin group after the search result, not sure why yet.
* user management: remove autocompletion of user/password fields, fix #8464Jan-Christoph Borchardt2014-06-021-2/+4
|
* user management: remove unneeded and erroneous user filter reset functionJan-Christoph Borchardt2014-06-021-1/+0
|
* Rename $isadmin to $isAdminLukas Reschke2014-06-021-2/+2
|
* add reset button for the filter fieldArthur Schiwon2014-06-021-1/+2
|
* more appropriate labelArthur Schiwon2014-06-021-1/+1
|
* unify and consolidate group fetching method for initial template fill and ↵Arthur Schiwon2014-06-021-3/+3
| | | | ajax request