1
mirror of https://github.com/rclone/rclone synced 2024-10-17 03:01:13 +02:00

onedrive: graph: Refine config keys naming

This commit is contained in:
Cnly 2018-08-21 09:52:24 +08:00 committed by Nick Craig-Wood
parent e114be11ec
commit 1749fb8ebf

View File

@ -38,8 +38,8 @@ const (
maxSleep = 2 * time.Second
decayConstant = 2 // bigger for slower decay, exponential
graphURL = "https://graph.microsoft.com/v1.0"
configGraphID = "graphID"
configDriveType = "driveType"
configDriveID = "drive_id"
configDriveType = "drive_type"
driveTypePersonal = "personal"
driveTypeBusiness = "business"
driveTypeSharepoint = "documentLibrary"
@ -210,7 +210,7 @@ func init() {
log.Fatalf("Cancelled by user")
}
config.FileSet(name, configGraphID, finalDriveID)
config.FileSet(name, configDriveID, finalDriveID)
config.FileSet(name, configDriveType, rootItem.ParentReference.DriveType)
},
Options: []fs.Option{{
@ -361,7 +361,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
}
// get the graphID part from the config file
driveID := config.FileGet(name, configGraphID, "")
driveID := config.FileGet(name, configDriveID, "")
driveType := config.FileGet(name, configDriveType)
root = parsePath(root)