aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/AppInfo
Commit message (Collapse)AuthorAgeFilesLines
* fix: adjust testingJohn Molakvoæ2023-07-111-9/+0
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* fix: drop legacy sharing filesJohn Molakvoæ2023-07-111-68/+3
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* feat(sharing): add sharing overview viewJohn Molakvoæ2023-07-111-7/+7
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Port Files navigation to vueJohn Molakvoæ2023-01-041-1/+0
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Add group display name cacheAnna Larch2022-11-281-0/+3
| | | | Signed-off-by: Anna Larch <anna@nextcloud.com>
* Multiple fixesCarl Schwan2022-07-311-28/+25
| | | | | | | | | | | - Fix tests - Use non deprecated event stuff - Add a bit of type hinting to the new stuff - More safe handling of instanceOfStorage (share might not be the first wrapper) - Fix resharing Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Block download when needed on direct download endpointVincent Petry2022-07-281-0/+2
| | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Fix view-only code after code review commentsVincent Petry2022-07-281-5/+5
| | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Add share attributes + prevent download permissionVincent Petry2022-07-281-3/+65
| | | | | | Makes it possible to store download permission Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Move files_sharing over to new event for projectsJulius Härtl2022-05-121-3/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Update cache when display name changeCarl Schwan2022-04-221-0/+3
| | | | | | This improve the correctness of the data Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Move bundles to /distJohn Molakvoæ (skjnldsv)2022-01-081-2/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* use the correct navigation manager for the sharesRobin Appelman2021-10-191-2/+2
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* call setupSharingMenus againRobin Appelman2021-10-191-13/+12
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* move files_sharing to IBootStrapRobin Appelman2021-10-191-54/+30
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Replace ILogger with LoggerInterface in remote share managerVincent Petry2021-07-271-1/+2
| | | | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com> Co-authored-by: Carl Schwan <carl@carlschwan.eu>
* Add logging to external shares managerVincent Petry2021-07-271-1/+2
| | | | | | | Instead of just returning false, also log the exception to make debugging database issues easier. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-2/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* load share settings from the share manager in more placesRobin Appelman2021-05-121-7/+13
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Do not register share menu in cases where the files app has not been ↵Julius Härtl2020-12-081-1/+1
| | | | | | registered yet Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix invalid usages of the new dispatcherRoeland Jago Douma2020-10-291-4/+6
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move federated_share_added into a typed eventMorris Jobke2020-07-231-1/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Migrate files sharing to the PSR containerChristoph Wurst2020-07-161-7/+7
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add BeforeTemplateRenderedEvent for files_sharingJulius Härtl2020-07-151-0/+3
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Lazy register the navigationRoeland Jago Douma2020-07-091-53/+56
| | | | | | | This makes sure that we do not translate unneeded strings on for example webdav requests. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update license headers for 19Christoph Wurst2020-04-291-2/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* PHP CS fixesJoas Schilling2020-04-181-5/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Directly use the class to get the serviceJoas Schilling2020-04-181-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix creating the share controllerJoas Schilling2020-04-181-70/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add visibility to all constantsChristoph Wurst2020-04-101-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-1/+0
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Unify function spacing to PSR2 recommendationChristoph Wurst2020-04-091-4/+4
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* 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>