summaryrefslogtreecommitdiffstats
path: root/apps/settings
Commit message (Collapse)AuthorAgeFilesLines
...
* | [tx-robot] updated from transifexNextcloud bot2021-06-02142-146/+146
| |
* | [tx-robot] updated from transifexNextcloud bot2021-05-316-4/+8
| |
* | [tx-robot] updated from transifexNextcloud bot2021-05-30140-152/+162
|/
* [tx-robot] updated from transifexNextcloud bot2021-05-264-0/+6
|
* [tx-robot] updated from transifexNextcloud bot2021-05-2510-8/+26
|
* [tx-robot] updated from transifexNextcloud bot2021-05-242-2/+4
|
* [tx-robot] updated from transifexNextcloud bot2021-05-2310-0/+14
|
* [tx-robot] updated from transifexNextcloud bot2021-05-2210-2/+12
|
* [tx-robot] updated from transifexNextcloud bot2021-05-21122-124/+124
|
* Harden apptoken checkRoeland Jago Douma2021-05-181-0/+20
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2021-05-162-2/+4
|
* Merge pull request #26909 from ↵dependabot-preview[bot]2021-05-1120-30/+30
|\ | | | | | | nextcloud/dependabot/npm_and_yarn/stable20/lodash-4.17.21
| * [Security] Bump lodash from 4.17.20 to 4.17.21dependabot-preview[bot]2021-05-1120-30/+30
| | | | | | | | | | | | | | | | | | Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. **This update includes a security fix.** - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.20...4.17.21) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
* | [tx-robot] updated from transifexNextcloud bot2021-05-102-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2021-05-092-2/+68
| |
* | [tx-robot] updated from transifexNextcloud bot2021-05-088-2/+46
|/
* [tx-robot] updated from transifexNextcloud bot2021-05-062-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2021-05-0410-4/+50
|
* [tx-robot] updated from transifexNextcloud bot2021-05-016-10/+294
|
* [tx-robot] updated from transifexNextcloud bot2021-04-302-0/+2
|
* Merge pull request #25973 from ↵Roeland Jago Douma2021-04-298-97/+471
|\ | | | | | | | | nextcloud/backport/25417/stable20-fix-account-data-visibility-after-disabling-public-addressbook-upload [stable20] Fix account data visibility after disabling public addressbook upload
| * Handle corrupted scope valuesDaniel Calviño Sánchez2021-04-232-8/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a bug (fixed some commits ago) in the UsersController of the settings app the scope of the properties can be null (for example, if lookup server upload was disabled and the user then changed the display name in the profile information). In that case now the scope menu icon shows an error to inform the user. The scope value will not change when other properties are modified until the user chooses an explicit value from the menu. Note that until a scope is explicitly set the property will behave as if it is private. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Fix settings scope menu hidden when lookup server upload is disabledDaniel Calviño Sánchez2021-04-235-32/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When upload to the lookup server is disabled the scope menu was hidden in the personal information settings. However, even if the lookup server upload is disabled the personal information is still accesible from the local server as well as trusted servers. Users should be able to still set if their information is available to other users or if it is private, so now the scope menu is always show (although the "Public" option is hidden if the lookup server upload is disabled). If the user set the information as public before the upload to the lookup server was disabled the menu will also show the "Public" option as active, although disabled. Setting the visibility to any of the other options will hide the "Public" option from the menu (until the lookup server upload is enabled again). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Fix deleting properties of user settings when not given explicitlyDaniel Calviño Sánchez2021-04-232-13/+163
| | | | | | | | | | | | | | | | | | | | The controller can receive an optional subset of the properties of the user settings; values not given are set to "null" by default. However, those null values overwrote the previously existing values, so in practice any value not given was deleted from the user settings. Now only non null values overwrite the previous values. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Fix TypeError when "email" is not given in the controller requestDaniel Calviño Sánchez2021-04-231-1/+1
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Respect additional user settings not covered by the controllerDaniel Calviño Sánchez2021-04-232-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "AccountManager::updateUser()" wipes previous user data with whichever user data is given (except for some adjustments, like resetting the verified status when needed). As the controller overrode the properties those properties would lose some of their attributes even if they are not affected by the changes made by the controller. Now the controller only modifies the attributes set ("value" and "scope") to prevent that. Note that with this change the controller no longer removes the "verified" status, but this is not a problem because, as mentioned, "AccountManager::updateUser()" resets them when needed (for example, when the value of the website property changes). This change is a previous step to fix overwritting properties with null values, and it will prevent the controller from making unexpected changes if more attributes are added in the future. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Add more unit tests for setting user settingsDaniel Calviño Sánchez2021-04-231-0/+145
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Change default test data to values less similar to empty valuesDaniel Calviño Sánchez2021-04-231-12/+12
| | | | | | | | | | | | | | Right now it makes no difference, but this should make future tests clearer, specially in case of failure. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Extract default test data to a helper getterDaniel Calviño Sánchez2021-04-231-42/+46
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Use constants from interface rather than classDaniel Calviño Sánchez2021-04-232-36/+38
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2021-04-296-6/+16
| |
* | [tx-robot] updated from transifexNextcloud bot2021-04-2814-0/+30
| |
* | [tx-robot] updated from transifexNextcloud bot2021-04-264-4/+20
| |
* | [tx-robot] updated from transifexNextcloud bot2021-04-254-0/+48
| |
* | [tx-robot] updated from transifexNextcloud bot2021-04-246-0/+8
|/
* [tx-robot] updated from transifexNextcloud bot2021-04-2342-42/+30
|
* Merge pull request #26684 from nextcloud/backport/26474/stable20Morris Jobke2021-04-221-1/+1
|\ | | | | [stable20] Mention MariaDB in MySQL support warning
| * Mention MariaDB in MySQL support warningClaas Augner2021-04-211-1/+1
| |
* | [tx-robot] updated from transifexNextcloud bot2021-04-22150-290/+392
|/
* [tx-robot] updated from transifexNextcloud bot2021-04-2114-0/+18
|
* [tx-robot] updated from transifexNextcloud bot2021-04-2082-86/+88
|
* [tx-robot] updated from transifexNextcloud bot2021-04-198-18/+20
|
* [tx-robot] updated from transifexNextcloud bot2021-04-1714-0/+14
|
* [tx-robot] updated from transifexNextcloud bot2021-04-164-2/+10
|
* [tx-robot] updated from transifexNextcloud bot2021-04-152-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2021-04-144-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2021-04-138-10/+26
|
* [tx-robot] updated from transifexNextcloud bot2021-04-122-2/+8
|
* [tx-robot] updated from transifexNextcloud bot2021-04-092-8/+8
|
* [tx-robot] updated from transifexNextcloud bot2021-04-082-0/+428
|