-
Notifications
You must be signed in to change notification settings - Fork 16
/
microsoft-extension.js
38 lines (37 loc) · 1.04 KB
/
microsoft-extension.js
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
// Copyright 2021-2023 Ellucian Company L.P. and its affiliates.
module.exports = {
name: 'microsoft-productivity-tools',
publisher: '',
configuration: {
client: [{
key: 'aadRedirectUrl',
label: 'Azure AD Redirect URL',
type: 'url',
required: true
}, {
key: 'aadClientId',
label: 'Azure AD Application (Client) ID',
type: 'text',
required: true
}, {
key: 'aadTenantId',
label: 'Azure AD Tenant ID',
type: 'text',
required: true
}]
},
cards: [{
type: 'OutlookCard',
source: './src/microsoft/cards/OutlookMailCard',
title: 'Outlook',
displayCardType: 'Outlook',
description: 'This card displays Office 365 Mail'
},
{
type: 'OneDriveCard',
source: './src/microsoft/cards/OneDriveCard',
title: 'OneDrive',
displayCardType: 'OneDrive',
description: 'This card displays OneDrive'
}]
}