aboutsummaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* update capabilitiesBjoern Schiessle2018-07-021-1/+5
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* send accept share notification (WIP)Bjoern Schiessle2018-07-025-14/+78
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* use new API to send a federated share if possibleBjoern Schiessle2018-07-025-19/+105
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* add cloud federation api appBjoern Schiessle2018-07-029-0/+1152
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* implement receiving of federated sharesBjoern Schiessle2018-07-025-181/+338
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* start implementing federated sharing 2.0Bjoern Schiessle2018-07-025-1/+102
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Bump webpack from 4.12.2 to 4.14.0 in /apps/oauth2dependabot[bot]2018-06-302-26/+21
| | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.12.2 to 4.14.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.12.2...v4.14.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
* Bump webpack from 4.12.2 to 4.14.0 in /apps/updatenotificationdependabot[bot]2018-06-292-35/+25
| | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.12.2 to 4.14.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.12.2...v4.14.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
* Merge pull request #10061 from ↵Roeland Jago Douma2018-06-292-26/+21
|\ | | | | | | | | nextcloud/dependabot/npm_and_yarn/apps/accessibility/webpack-4.14.0 Bump webpack from 4.12.2 to 4.14.0 in /apps/accessibility
| * Bump webpack from 4.12.2 to 4.14.0 in /apps/accessibilitydependabot[bot]2018-06-292-26/+21
| | | | | | | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.12.2 to 4.14.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.12.2...v4.14.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
* | Merge pull request #10041 from liamdennehy/10001/trashbin-defaultsRoeland Jago Douma2018-06-292-10/+57
|\ \ | |/ |/| Safe default behaviour when no users are specified on trashbin:cleanup
| * Fix and extend testsRoeland Jago Douma2018-06-291-6/+41
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * trashbin:cleanup exceptions for invalid optionsLiam Dennehy2018-06-281-4/+6
| | | | | | | | | | | | | | * throw on no parameters provided * throw on --all-users and userid provided Signed-off-by: Liam Dennehy <liam@wiemax.net>
| * Default behaviour when no users are specified on trashbin:cleanupLiam Dennehy2018-06-281-3/+13
| | | | | | | | | | | | | | | | * Add option --all-users to explicitly clean all trashbins * Reject no users on commandline and no --all-users * Warn when --all-users and userids are specified Signed-off-by: Liam Dennehy <liam@wiemax.net>
* | Merge pull request #10038 from nextcloud/files-scan-home-onlyMorris Jobke2018-06-291-3/+13
|\ \ | | | | | | Add option to only scan the home storage
| * | Add option to only scan the home storageRobin Appelman2018-06-281-3/+13
| |/ | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Do not hide reset buttonJulius Härtl2018-06-292-3/+1
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Adjust collaborative tags and automated tagging settingsJulius Härtl2018-06-295-26/+65
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Merge pull request #10046 from ↵Morris Jobke2018-06-292-7/+7
|\ \ | | | | | | | | | | | | nextcloud/fix-getting-the-information-of-a-group-share-as-a-sharee Fix getting the information of a group share as a sharee
| * | Fix getting the information of group share as a shareeDaniel Calviño Sánchez2018-06-292-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the receiver of a group share modifies it (for example, by moving it to a different folder) the original share is not modified, but a "ghost" share that keeps track of the changes made by that specific user is used instead. By default, the method "getShareById" in the share provider returns the share from the point of view of the sharer, but it can be used too to get the share from the point of view of a sharee by providing the "recipient" parameter (and if the sharee is not found then the share is returned from the point of view of the sharer). The "ShareAPIController" always formats the share from the point of view of the current user, but when getting the information of a specific share the "recipient" parameter was not given, so it was always returned from the point of view of the sharer, even if the current user was a sharee. Now the "recipient" parameter is set to the current user, and thus the information of the share is returned from the point of view of the current user, be it the sharer or a sharee. Note that this special behaviour of "getShareById" happens only with group shares; with other types of shares the share is the same for the sharer and the sharee, and thus the parameter is ignored; it was added for them too just for consistency. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #8854 from nextcloud/drop-old-sharing-codeMorris Jobke2018-06-292-135/+0
|\ \ \ | | | | | | | | Get rid of shareItem
| * | | Backends are legacy code as well and need to goRoeland Jago Douma2018-05-231-114/+0
| | | | | | | | | | | | | | | | | | | | | | | | so no need to fix the tests Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | Get rid of shareItemMorris Jobke2018-05-232-22/+1
| | | | | | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | | Merge pull request #9705 from nextcloud/feature/9163/whatsnew-admin-guiMorris Jobke2018-06-2920-68/+288
|\ \ \ \ | | | | | | | | | | display whats new info in admin settings
| * | | | adjust testsArthur Schiwon2018-06-291-6/+11
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | RebuildRoeland Jago Douma2018-06-292-4/+4
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | updated production js filesArthur Schiwon2018-06-292-3/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | adjust backend and gui to update and changelog serverArthur Schiwon2018-06-295-34/+115
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | Unify vue template designJohn Molakvoæ (skjnldsv)2018-06-2914-16/+16
| | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | various fixes, typo, center popover, updated buildJohn Molakvoæ (skjnldsv)2018-06-297-141/+4
| | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | Popover design fixes and settings updateJohn Molakvoæ (skjnldsv)2018-06-296-2/+141
| | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | adjust and reuse apps.css, makes additional class and rules unnecessaryArthur Schiwon2018-06-292-14/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | CSS fixesArthur Schiwon2018-06-292-10/+12
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | do things with npm so make build-js-production succeeds without complaintsArthur Schiwon2018-06-295-31/+27
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | fix method declarationArthur Schiwon2018-06-291-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | adjust testsArthur Schiwon2018-06-293-1/+11
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * | | | display whats new info in admin settingsArthur Schiwon2018-06-2910-10/+145
| | |/ / | |/| | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | Merge pull request #10037 from nextcloud/dav-options-searchMorris Jobke2018-06-295-3/+84
|\ \ \ \ | |/ / / |/| | | Fix search related results in OPTIONS requests
| * | | Fix search related results in OPTIONS requestsRobin Appelman2018-06-285-3/+84
| | |/ | |/| | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #5623 from nextcloud/locale-settingMorris Jobke2018-06-293-5/+22
|\ \ \ | | | | | | | | Add user locale/region setting
| * | | fix tests / mistakes made during rebaseGeorg Ehrke2018-06-273-20/+8
| | | | | | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
| * | | handle config.php valuesThomas Citharel2018-06-271-0/+4
| | | | | | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
| * | | Fix review & testsThomas Citharel2018-06-272-6/+11
| | | | | | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * | | Allow user to choose localeThomas Citharel2018-06-271-0/+20
| | | | | | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | | Merge pull request #9773 from nextcloud/feature/noid/resource_bookingMorris Jobke2018-06-2920-16/+2276
|\ \ \ \ | | | | | | | | | | resource booking
| * | | | Call Backgroundjob with parameter, as interface requiresGeorg Ehrke2018-06-281-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
| * | | | Calendar resource booking: unit tests / adding missing annotationsGeorg Ehrke2018-06-252-4/+291
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
| * | | | update classloader/classmap for calendar resource booking changesGeorg Ehrke2018-06-252-0/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
| * | | | periodically query calendar resource / room backends for updated resource / ↵Georg Ehrke2018-06-253-0/+349
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | room information Signed-off-by: Georg Ehrke <developer@georgehrke.com>
| * | | | apply group restrictions to resourcesGeorg Ehrke2018-06-259-31/+1108
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>