Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fix(files_sharing): adjust IAttributes API and files_versions | skjnldsv | 2024-07-12 | 1 | -6/+7 | |
| | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | |||||
* | fix(files_sharing): phpunit & openapi fixes | skjnldsv | 2024-07-12 | 1 | -1/+1 | |
| | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | |||||
* | fix: ARateLimit documentation | skjnldsv | 2024-07-12 | 1 | -0/+2 | |
| | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | |||||
* | fix: psalm, cs, autoloader and lint | skjnldsv | 2024-07-12 | 2 | -2/+2 | |
| | | | | Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | |||||
* | feat(files_sharing): allow mixed values in share attributes and allow ↵ | skjnldsv | 2024-07-12 | 1 | -2/+2 | |
| | | | | | | storing email arrays Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | |||||
* | feat(files_sharing): implement IShareProviderWithNotification and refactor ↵ | skjnldsv | 2024-07-12 | 2 | -2/+26 | |
| | | | | | | sendMailNotification Signed-off-by: skjnldsv <skjnldsv@protonmail.com> | |||||
* | fix(dashboard): Document expected icon behaviour | Joas Schilling | 2024-07-11 | 2 | -2/+16 | |
| | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com> | |||||
* | Merge pull request #46371 from nextcloud/feat/filename-validator | Ferdinand Thiessen | 2024-07-10 | 1 | -0/+39 | |
|\ | | | | | feat: Add `IFilenameValidator` to have one consistent place for filename validation | |||||
| * | feat: Add `IFilenameValidator` to have one consistent place for filename ↵ | Ferdinand Thiessen | 2024-07-09 | 1 | -0/+39 | |
| | | | | | | | | | | | | | | | | validation Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de> Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> | |||||
* | | Merge pull request #46123 from nextcloud/feat/user-password-hash | Pytal | 2024-07-09 | 2 | -0/+47 | |
|\ \ | |/ |/| | feat: Allow getting/setting the password hash of a user | |||||
| * | docs: Add info for the password hashes | Christopher Ng | 2024-07-08 | 2 | -0/+8 | |
| | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> | |||||
| * | feat: Allow getting/setting the password hash of a user | Christopher Ng | 2024-07-08 | 1 | -0/+14 | |
| | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> | |||||
| * | feat: Add IPasswordHashBackend | Christopher Ng | 2024-07-08 | 1 | -0/+25 | |
| | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> | |||||
* | | Merge pull request #45249 from ↵ | yemkareems | 2024-07-09 | 1 | -0/+11 | |
|\ \ | |/ |/| | | | | | nextcloud/feature/add-ability-to-sort-by-last-login feat: add ability to sort by last login | |||||
| * | fix: getLastLoggedInUsers moved from AllConfig/IConfig to IUserManager/Manager | yemkareems | 2024-07-08 | 2 | -11/+11 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: doc block corrected | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: return type doc block added as per psalm | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: return type doc block added as per psalm | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: query refactored to support both the search by email and sort by login | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: limit and fixLimit removed. negative limit handled in controller. ↵ | yemkareems | 2024-07-08 | 1 | -5/+0 | |
| | | | | | | | | | | | | removed getUsersSortedByLastLogin from Manager and instead used the config in controller Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: removed default limit of 25. if null is given all users are fetched or ↵ | yemkareems | 2024-07-08 | 1 | -2/+2 | |
| | | | | | | | | | | | | if limit is given limit number of users are fetched Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: removed references to old disabled users code. refactored query as per ↵ | yemkareems | 2024-07-08 | 1 | -1/+3 | |
| | | | | | | | | | | | | getDisplayNames function. limit and offset added to query. default limit set to 25. Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: removed the params related to sortMode and order since it sorts by ↵ | yemkareems | 2024-07-08 | 2 | -4/+2 | |
| | | | | | | | | | | | | lastLogin Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: since added to doc blocks | yemkareems | 2024-07-08 | 2 | -0/+2 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: doc blocks added | yemkareems | 2024-07-08 | 2 | -0/+11 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: search and searchDisplayNames reverted to how it was initially as sort ↵ | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | and order are not required here Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: rebased the branch with master and resolved conflicts | yemkareems | 2024-07-08 | 3 | -4/+5 | |
| | | | | | | | | | | | | fix: added a new endpoint users/recent and getting users based on last login info in the same. Reverted old code that was breaking LDAP Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: change orderBy and sort to sortMode and sortOrder. default it to uid ↵ | yemkareems | 2024-07-08 | 2 | -5/+5 | |
| | | | | | | | | | | | | asc. enable email search by changing query Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: cs fix and psalm ci related changes | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | fix: sort the user getDisplayNames based on lastLogin. Default sort order is ↵ | yemkareems | 2024-07-08 | 1 | -2/+4 | |
| | | | | | | | | | | | | lastLogin DESC Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
| * | feat: add ability to sort users by last_login, uid or displayName. one of ↵ | yemkareems | 2024-07-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | these needs to be passed as orderBy and sort can be ASC or DESC Signed-off-by: yemkareems <yemkareems@gmail.com> | |||||
* | | Merge pull request #46115 from nextcloud/enh/add-a-universal-debug-option-to-occ | Côme Chilliet | 2024-07-08 | 1 | -0/+24 | |
|\ \ | |/ |/| | feat(occ): Add a --debug option to output all log levels to the output | |||||
| * | feat: Add reserved options in a new OCP class so that applications know ↵ | Côme Chilliet | 2024-07-04 | 1 | -0/+24 | |
| | | | | | | | | | | | | about them Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> | |||||
* | | feat: Add method to validate an IHasher hash | Christopher Ng | 2024-07-04 | 1 | -0/+7 | |
| | | | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> | |||||
* | | Merge pull request #46251 from nextcloud/feat/taskprocessing-more-tasktypes | Joas Schilling | 2024-07-04 | 4 | -0/+378 | |
|\ \ | | | | | | | feat(TaskProcessing): Add more task types | |||||
| * | | feat(TaskProcessing): Add more task types | Marcel Klehr | 2024-07-04 | 4 | -0/+378 | |
| | | | | | | | | | | | | Signed-off-by: Marcel Klehr <mklehr@gmx.net> | |||||
* | | | fix(TaskProcessing): Set task status to running when processing via ↵ | Marcel Klehr | 2024-07-04 | 1 | -0/+10 | |
| | | | | | | | | | | | | | | | | | | ISynchronousProvider Signed-off-by: Marcel Klehr <mklehr@gmx.net> | |||||
* | | | Fix: Make out of office replacement nullable | Hamza Mahjoubi | 2024-07-03 | 1 | -4/+4 | |
| |/ |/| | | | | | Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com> | |||||
* | | feat(OpenAPI): Add ex_app scope | provokateurin | 2024-07-02 | 1 | -0/+8 | |
| | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | |||||
* | | Merge pull request #45766 from nextcloud/feat/ooo-replacement | Daniel | 2024-07-01 | 1 | -0/+16 | |
|\ \ | | | | | | | Feat: Allow users to select another user as their out-of-office replacement | |||||
| * | | Feat: Allow users to select another user as their out-of-office replacement | Hamza Mahjoubi | 2024-07-01 | 1 | -0/+16 | |
| | | | | | | | | | | | | Signed-off-by: Hamza Mahjoubi <hamzamahjoubi221@gmail.com> | |||||
* | | | feat(TaskProcessingApi): Add endpoint for getting the next task | provokateurin | 2024-07-01 | 1 | -2/+20 | |
| | | | | | | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | |||||
* | | | feat(AppFramework): Add ExAppRequired attribute | provokateurin | 2024-07-01 | 1 | -0/+21 | |
|/ / | | | | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | |||||
* | | Merge pull request #46133 from ↵ | Joas Schilling | 2024-06-27 | 1 | -1/+3 | |
|\ \ | | | | | | | | | | | | | nextcloud/bugfix/noid/fix-missing-protocol-on-remotes fix(federation): Fix missing protocol on CloudID remote | |||||
| * | | fix(federation): Fix missing protocol on CloudID remote | Joas Schilling | 2024-06-27 | 1 | -1/+3 | |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* | | | Merge pull request #45947 from nextcloud/feat/qbmapper-yield-entities | Joas Schilling | 2024-06-27 | 1 | -0/+21 | |
|\ \ \ | | | | | | | | | feat: Add yieldEntities wrapper for entity mapping in QBMapper | |||||
| * | | | feat: Add yieldEntities wrapper for entity mapping in QBMapper | Julius Härtl | 2024-06-24 | 1 | -0/+21 | |
| | |/ | |/| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | |||||
* | | | chore: Move comments event handler to use proper event dispatcher | Julius Härtl | 2024-06-26 | 1 | -0/+2 | |
| |/ |/| | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | |||||
* | | Merge pull request #45532 from nextcloud/feat/publish-resources-room-update | Richard Steinmetz | 2024-06-25 | 2 | -2/+14 | |
|\ \ | |/ |/| | feat: implement public OCP api to update resources and rooms | |||||
| * | feat: implement public OCP api to update resources and rooms | Richard Steinmetz | 2024-05-27 | 2 | -2/+14 | |
| | | | | | | | | Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud> |