You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: data/config-schema.json
+23
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,26 @@
4
4
"description": "User configuration for gcalcli command-line tool.\n\nSee https://pypi.org/project/gcalcli/.",
5
5
"type": "object",
6
6
"$defs": {
7
+
"AuthSection": {
8
+
"title": "Settings for authentication",
9
+
"description": "Configuration for settings like client-id used in auth flow.\n\nNote that client-secret can't be configured here and should be passed on\ncommand-line instead for security reasons.",
10
+
"type": "object",
11
+
"properties": {
12
+
"client-id": {
13
+
"title": "Client ID for Google auth token",
14
+
"description": "Google client ID for your auth client project.\n\nDetails: https://github.com/insanum/gcalcli/blob/HEAD/docs/api-auth.md",
15
+
"anyOf": [
16
+
{
17
+
"type": "string"
18
+
},
19
+
{
20
+
"type": "null"
21
+
}
22
+
],
23
+
"default": null
24
+
}
25
+
}
26
+
},
7
27
"CalendarsSection": {
8
28
"title": "Settings about the set of calendars gcalcli operates on",
0 commit comments