summaryrefslogtreecommitdiffstats
path: root/apps/files_external/appinfo/app.php
Commit message (Collapse)AuthorAgeFilesLines
* move files_external to IBootstrapRobin Appelman2021-06-161-51/+0
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* remove depricated methods from MountConfigRobin Appelman2021-06-161-3/+3
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Rename External storages to External storageszaimen2021-05-201-1/+1
| | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* Update all license headers for Nextcloud 21Christoph Wurst2020-12-161-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update the license headers for Nextcloud 20Christoph Wurst2020-08-241-2/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Move OC_Mount_Config to proper classname and remove OC::$CLASSPATH usage in ↵Morris Jobke2020-07-101-5/+3
| | | | | | files_external Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersChristoph Wurst2019-12-051-3/+5
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* when a user was delete remove them from applicable list, unlessArthur Schiwon2019-11-281-0/+2
| | | | | | it is the only user, then remove the mount Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Remove some more direct app instance creationsChristoph Wurst2019-11-251-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use ::class statement instead of stringMorris Jobke2018-01-291-1/+3
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update license headersMorris Jobke2017-11-061-3/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* move personal external storage settings to it's own sectionRobin Appelman2017-06-231-2/+0
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Add more hints to settingsJan-Christoph Borchardt2017-04-261-1/+1
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* use closure to properly defer l10n initialization (#27328)Jörn Friedrich Dreyer2017-03-131-9/+10
|
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix apps/Joas Schilling2016-07-211-3/+4
|
* Update license headersLukas Reschke2016-05-261-1/+1
|
* Move stuff from outside lib/ to PSR-4Joas Schilling2016-05-241-1/+1
|
* Fix OCA\Files\External\Api namespaceRobin McCorkell2016-04-141-1/+0
|
* Fix storage backend class namespaces and move to subdirRobin McCorkell2016-04-141-9/+0
| | | | | All classes that were previously \OC\Files\Storage\FooBar are now \OCA\Files_External\Lib\Storage\FooBar
* Update author informationLukas Reschke2016-03-011-2/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Consolidate user mounting check codeRobin McCorkell2016-01-141-5/+2
|
* Happy new year!Thomas Müller2016-01-121-3/+3
|
* remove old propagation logicRobin Appelman2015-12-011-3/+0
|
* Update license headersLukas Reschke2015-10-261-1/+1
|
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+1
|
* update licence headers via scriptMorris Jobke2015-10-051-5/+1
|
* Migrate SFTP_Key external storage to new APIRobin McCorkell2015-08-281-13/+0
| | | | | The SFTP backend now supports public key authentication alongside password authentication.
* Migrate SMB_OC external storage to new APIRobin McCorkell2015-08-281-16/+0
| | | | | SMB_OC has been merged with SMB, via the identifier aliases mechanism. Legacy migration is done to the Session Credentials password mechanism
* Migrate Swift external storage to new APIRobin McCorkell2015-08-281-18/+0
| | | | | The Rackspace/OpenStack differences have been split into separate auth mechanisms, with correct legacy migration
* Migrate Google external storage to new APIRobin McCorkell2015-08-251-14/+0
|
* Migrate Dropbox external storage to new APIRobin McCorkell2015-08-251-14/+0
|
* Migrate AmazonS3 external storage to new APIRobin McCorkell2015-08-251-27/+0
|
* Migrate SFTP external storage to new APIRobin McCorkell2015-08-191-11/+0
|
* Migrate OwnCloud external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate DAV external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate SMB external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate FTP external storage to new APIRobin McCorkell2015-08-191-13/+0
|
* Migrate Local external storage to new APIRobin McCorkell2015-08-191-12/+0
|
* Restrict Local backend to admin-onlyRobin McCorkell2015-08-191-0/+4
|
* Make Application a singletonRobin McCorkell2015-08-191-5/+3
| | | | | The same Application must be used in the settings templates and in routes, so that any registered backends are correctly seen
* Introduce BackendService for managing external storage backendsRobin McCorkell2015-08-191-4/+9
| | | | | | | | | | | | | | | | | Backends are registered to the BackendService through new data structures: Backends are concrete classes, deriving from \OCA\Files_External\Lib\Backend\Backend. During construction, the various configuration parameters of the Backend can be set, in a design similar to Symfony Console. DefinitionParameter stores a parameter configuration for an external storage: name of parameter, human-readable name, type of parameter (text, password, hidden, checkbox), flags (optional or not). Storages in the StoragesController now get their parameters validated server-side (fixes a TODO).
* update license headers and authorsMorris Jobke2015-06-251-1/+0
|
* Make string 'SFTP with secret key login' translatableMartin2015-05-271-1/+1
|
* Update license headersJenkins for ownCloud2015-03-261-5/+30
|
* Use storage id + appframework for ext storage CRUDVincent Petry2015-03-121-0/+2
| | | | | | | | | | | | | - Added StorageConfig class to replace ugly arrays - Implemented StorageService and StorageController for Global and User storages - Async status checking for storages (from Xenopathic) - Auto-generate id for external storage configs (not the same as storage_id) - Refactor JS classes for external storage settings, this mostly moves/encapsulated existing global event handlers into the MountConfigListView class. - Added some JS unit tests for the external storage UI
* Revert "Updating license headers"Morris Jobke2015-02-261-29/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-5/+29
|
* New SMB storage backendRobin Appelman2015-02-161-0/+2
|