1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
From: Andy Holmes <[email protected]>
Date: Tue, 19 Mar 2024 14:49:58 -0700
Subject: goabackend: update Microsoft client ID
Update the client ID used for Microsoft accounts, to use the new
[email protected] account.
depends on https://gitlab.gnome.org/Infrastructure/Infrastructure/-/issues/1382
(cherry picked from commit 47b3b4257e8c16763a581093cba751e83312a2dc)
Origin: future 3.50.1
---
meson_options.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meson_options.txt b/meson_options.txt
index ca83d2c..2f06676 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -17,10 +17,10 @@ option('owncloud', type: 'boolean', value: true, description: 'Enable ownCloud p
option('webdav', type: 'boolean', value: true, description: 'Enable WebDAV provider')
option('windows_live', type: 'boolean', value: true, description: 'Enable Windows Live provider')
-option('windows_live_client_id', type: 'string', value: '0000000044067703', description: 'Windows Live OAuth 2.0 client id')
+option('windows_live_client_id', type: 'string', value: '8ef61e06-9fd5-49af-9b63-6983aede4213', description: 'Windows Live OAuth 2.0 client id')
option('ms_graph', type: 'boolean', value: true, description: 'Enable Microsoft 365 provider')
-option('ms_graph_client_id', type: 'string', value: '', description: 'Microsoft 365 client id')
+option('ms_graph_client_id', type: 'string', value: '8ef61e06-9fd5-49af-9b63-6983aede4213', description: 'Microsoft 365 client id')
option('gtk_doc', type: 'boolean', value: false, description: 'use gtk_doc to build documentation')
option('introspection', type: 'boolean', value: true, description: 'Enable GObject Introspection (depends on GObject)')
|