aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/AppInfo
Commit message (Collapse)AuthorAgeFilesLines
...
* Update the license headers for Nextcloud 19Christoph Wurst2020-03-311-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Convert share event to an interaction eventChristoph Wurst2020-03-251-1/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Auto accept group shares for users added to a groupRoeland Jago Douma2020-03-251-0/+3
| | | | | | | In case auto accepting is enabled (the default). Users that are newly added to a group should not have to accept those shares. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove global share accepter since auto-accepting is the defaultJulius Härtl2020-01-161-1/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix license headersChristoph Wurst2020-01-131-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add pending share list to frontendJulius Härtl2020-01-071-0/+9
| | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Allow users to specify to accept (internal) shares by defaultRoeland Jago Douma2019-12-171-0/+2
| | | | | | | | | Fixes #18255 A new user setting allows a user to always accept (internal) shares. For example if they don't like accepting shares manually ;) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* config.php setting to always accept internal sharesRoeland Jago Douma2019-12-161-5/+8
| | | | | | Part of #18255 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update license headersChristoph Wurst2019-12-051-1/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix testsJohn Molakvoæ (skjnldsv)2019-12-021-1/+0
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Create sharing entry point with constantsJohn Molakvoæ (skjnldsv)2019-12-021-0/+7
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Fix files_sharing app LoadSidebar eventJohn Molakvoæ (skjnldsv)2019-12-021-11/+94
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Some php-cs fixesRoeland Jago Douma2019-11-221-7/+7
| | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Add notifications for users that are added to the groupJoas Schilling2019-11-121-0/+6
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add the notifier and the API endpoint for user sharesJoas Schilling2019-11-121-0/+11
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add notification for shares about to expireRoeland Jago Douma2019-11-011-0/+5
| | | | | | | Introduces a new command that will create notifications for users if they have shares that will expire the next day. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move over OCSShareAPIMIddleware to pure DIRoeland Jago Douma2019-10-161-8/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix files_sharingRoeland Jago Douma2018-11-021-1/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* accept/decline group sharesBjoern Schiessle2018-07-111-0/+2
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* send accept share notification (WIP)Bjoern Schiessle2018-07-021-0/+2
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Use ::class statement instead of stringMorris Jobke2018-01-291-2/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersMorris Jobke2017-11-061-0/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Remove old code + add MiddlewareRoeland Jago Douma2017-08-101-0/+8
| | | | | | | * Add proper middleware for shareinfo * Remove old shareinfo routes Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove unused use statementsMorris Jobke2017-04-221-1/+0
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Do proper DIRoeland Jago Douma2017-04-111-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* remove discovery manager in favour of the OCSDiscoveryServiceBjoern Schiessle2017-04-111-5/+1
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Move OC_Defaults to OCP\DefaultsMorris Jobke2017-04-091-1/+2
| | | | | | | | | | | | | * currently there are two ways to access default values: OCP\Defaults or OC_Defaults (which is extended by OCA\Theming\ThemingDefaults) * our code used a mixture of both of them, which made it hard to work on theme values * this extended the public interface with the missing methods and uses them everywhere to only rely on the public interface Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* register cloudidmanager for files_sharingRobin Appelman2017-02-081-0/+4
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Add a single public api for resolving a cloud id to a user and remote and backRobin Appelman2017-02-081-1/+2
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* allow to access mail shares even if public links are disabledBjoern Schiessle2017-01-041-1/+3
| | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* Move files_sharing Controllers => ControllerRoeland Jago Douma2016-10-241-2/+2
| | | | | | | lib/Controller is the default location for controllers. So lets put them all in there. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move Share20OCS to ShareAPIControllerRoeland Jago Douma2016-10-241-14/+0
| | | | | | | | | | | | It was already a controller just still residing in its old location. * Moved ShareAPIController to user plain userID instead of user object * Moved Share20OCS to ShareAPIController * Removed initisation of class from Application.php and leave it to the AppFramework * Fixed tests Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Adding Open Graph Support for public shares http://ogp.me/Thomas Müller2016-10-211-2/+6
| | | | | | In case no preview is available we display the ownCloud logo Fix unit test
* Move remote_shares OCS endpoint to AppFrameworkRoeland Jago Douma2016-09-091-0/+1
|
* HTTPHelper is deprecatedRoeland Jago Douma2016-08-241-1/+1
| | | | Use the IClientService instead
* Add OCSShareAPIMiddlewareRoeland Jago Douma2016-08-051-0/+9
| | | | | * This will cleanup the locks after each request * Move check for enabled share api to the middleware
* Convert Share API to use the AppFrameworkRoeland Jago Douma2016-08-051-1/+14
|
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix apps/Joas Schilling2016-07-211-3/+5
|
* Add eventdispatcher to public link viewRoeland Jago Douma2016-07-181-1/+2
|
* remove unused parameterBjoern Schiessle2016-07-141-1/+1
|
* Catch exceptions while creating shared mounts (#25077)Robin Appelman2016-06-201-1/+2
|
* Update license headersLukas Reschke2016-05-261-1/+2
|
* Move classes from outside lib/ to PSR-4Joas Schilling2016-05-251-0/+145