mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
webgui: remove unused code (fixes issue reported by the unused linter)
This commit is contained in:
parent
5f3c276d0a
commit
448ae49fa4
@ -152,33 +152,6 @@ func (p *Plugins) addPlugin(pluginName string, packageJSONPath string) (err erro
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Plugins) addTestPlugin(pluginName string, testURL string, handlesType []string) (err error) {
|
|
||||||
p.mutex.Lock()
|
|
||||||
defer p.mutex.Unlock()
|
|
||||||
err = p.readFromFile()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
var pkgJSON = PackageJSON{
|
|
||||||
Name: pluginName,
|
|
||||||
TestURL: testURL,
|
|
||||||
Rclone: RcloneConfig{
|
|
||||||
HandlesType: handlesType,
|
|
||||||
Test: true,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
p.LoadedPlugins[pluginName] = pkgJSON
|
|
||||||
|
|
||||||
err = p.writeToFile()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *Plugins) writeToFile() (err error) {
|
func (p *Plugins) writeToFile() (err error) {
|
||||||
availablePluginsJSON := filepath.Join(pluginsConfigPath, p.fileName)
|
availablePluginsJSON := filepath.Join(pluginsConfigPath, p.fileName)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user