-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsettings.ts
48 lines (48 loc) · 1.41 KB
/
settings.ts
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
42
43
44
45
46
47
48
import { ISetting, SettingType } from '@rocket.chat/apps-engine/definition/settings';
export const settings: Array<ISetting> = [
{
id: 'Members_Room_Name',
type: SettingType.STRING,
packageValue: '',
required: true,
public: false,
i18nLabel: 'Koko_Members_Room_Name',
i18nDescription: 'Koko_Members_Room_Name_Description',
},
{
id: 'Post_Praise_Room_Name',
type: SettingType.STRING,
packageValue: '',
required: true,
public: false,
i18nLabel: 'Koko_Post_Praise_Room_Name',
i18nDescription: 'Koko_Post_Praise_Room_Name_Description',
},
{
id: 'Post_Answers_Room_Name',
type: SettingType.STRING,
packageValue: '',
required: true,
public: false,
i18nLabel: 'Koko_Post_Answers_Room_Name',
i18nDescription: 'Koko_Post_Answers_Room_Name_Description',
},
{
id: 'Bot_Username',
type: SettingType.STRING,
packageValue: 'rocket.cat',
required: true,
public: false,
i18nLabel: 'Koko_Bot_Username',
i18nDescription: 'Koko_Bot_Username_Description',
},
{
id: 'AllStars_Webhook',
type: SettingType.STRING,
packageValue: '',
required: false,
public: false,
i18nLabel: 'AllStars_Webhook',
i18nDescription: 'AllStars_Webhook_Description',
},
];