| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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.
|
|\
| |
| | |
Remove SVG fallback
|
| | |
|
| | |
|
|/
|
|
|
| |
Prevents "other" value to be deleted.
When appending custom value, put it above the "other" entry.
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
Fixes https://github.com/owncloud/core/issues/23499
|
|
|
|
|
|
| |
Some of them were found by codespell.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
This removed the need to do an avatar request on the "empty" row in the
user settings.
|
| |
|
|\
| |
| | |
reset mailadress/displayname on blur
|
| | |
|
|/ |
|
|
|
|
|
|
|
|
|
| |
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!
|
|
|
|
|
| |
Killed the old static route to change a users display name and moved it
to a properly testable controller.
|
| |
|
|
|
|
| |
Also moved the logic to the UsersController
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Store the setting in the user managerment page (e.g. show e-mail
address).
Fixes #12727
|
|\
| |
| | |
Do not delete group if empty, hide delete icon for group admin
|
| | |
|
|\ \
| |/
|/| |
[user mgnt] fix delete user feedback on failure
|
| |
| |
| |
| | |
* fixes #18099
|
|/ |
|
| |
|
|
|
|
|
| |
This will properly update the controls bar width and display the search
box initially.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* the name cell was changed from td to th because of accessibility
issues - this adjusts the CSS and JS to behave like before
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
|
|
|
|
|
| |
* 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 users
|
| |
| |
| |
| |
| |
| | |
* supply mail address
* send mail with username and URL to that mail address
* option to temporary enable this feature
|