-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See sourcegraph/cody#1871 ## Test plan Tested as part of sourcegraph/cody#1871
- Loading branch information
Showing
2 changed files
with
25 additions
and
28 deletions.
There are no files selected for viewing
21 changes: 11 additions & 10 deletions
21
src/main/kotlin/com/sourcegraph/cody/agent/ExtensionConfiguration.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
package com.sourcegraph.cody.agent | ||
|
||
data class ExtensionConfiguration( | ||
var serverEndpoint: String, | ||
var proxy: String? = null, | ||
var accessToken: String, | ||
var customHeaders: Map<String, String> = emptyMap(), | ||
var autocompleteAdvancedProvider: String? = null, | ||
var autocompleteAdvancedServerEndpoint: String? = null, | ||
var autocompleteAdvancedAccessToken: String? = null, | ||
var debug: Boolean? = false, | ||
var verboseDebug: Boolean? = false, | ||
var codebase: String? = null | ||
val anonymousUserID: String?, | ||
val serverEndpoint: String, | ||
val proxy: String? = null, | ||
val accessToken: String, | ||
val customHeaders: Map<String, String> = emptyMap(), | ||
val autocompleteAdvancedProvider: String? = null, | ||
val autocompleteAdvancedServerEndpoint: String? = null, | ||
val autocompleteAdvancedAccessToken: String? = null, | ||
val debug: Boolean? = false, | ||
val verboseDebug: Boolean? = false, | ||
val codebase: String? = null | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters