-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
41 lines (41 loc) · 1.2 KB
/
appsettings.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
34
35
36
37
38
39
40
41
{
/*
The following identity settings need to be configured
before the project can be successfully executed.
For more info see https://aka.ms/dotnet-template-ms-identity-platform
*/
"AzureAd": {
"Authority": "https://login.microsoftonline.com/common",
"ClientId": "07144b2e-509d-40d9-bab9-90db3c731f47",
"ValidateAuthority": true
},
"MicrosoftGraph": {
"BaseUrl": "https://graph.microsoft.com/v1.0",
"Scopes": [
"https://graph.microsoft.com/user.read",
"https://graph.microsoft.com/Calendars.Read",
"https://graph.microsoft.com/Calendars.ReadWrite.Shared",
"https://graph.microsoft.com/Contacts.ReadWrite",
"https://graph.microsoft.com/Files.ReadWrite.All",
"https://graph.microsoft.com/Tasks.ReadWrite",
"https://graph.microsoft.com/Team.ReadBasic.All",
"https://graph.microsoft.com/Mail.Send"
]
},
"MeetingDefaults": {
"DefaultMeetingLengthMinutes": 55,
"ShortMeetingLengthMinutes": 25
},
"Terminology": {
"Meeting": "",
"Meetings": "",
"Project": "",
"Projects": ""
},
"AuthenticationUi": {
"AdvertisePersonalMicrosoftAccounts": false
},
"Testing": {
"EnableBrowserTestMode": false
}
}