-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmodules.ts
59 lines (58 loc) · 1.67 KB
/
modules.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
49
50
51
52
53
54
55
56
57
58
59
import ModuleData from '@data/faker/module';
export default {
blockwishlist: new ModuleData({
tag: 'blockwishlist',
name: 'Wishlist',
}),
psApiResources: new ModuleData({
tag: 'ps_apiresources',
name: 'PrestaShop API Resources',
}),
psCashOnDelivery: new ModuleData({
tag: 'ps_cashondelivery',
name: 'Cash on delivery (COD)',
}),
psCheckPayment: new ModuleData({
tag: 'ps_checkpayment',
name: 'Payments by check',
}),
psEmailAlerts: new ModuleData({
tag: 'ps_emailalerts',
name: 'Mail alerts',
releaseZip: 'https://github.com/PrestaShop/ps_emailalerts/releases/download/v2.4.2/ps_emailalerts.zip',
}),
psEmailSubscription: new ModuleData({
tag: 'ps_emailsubscription',
name: 'Newsletter subscription',
}),
psFacetedSearch: new ModuleData({
tag: 'ps_facetedsearch',
name: 'Faceted search',
releaseZip: 'https://github.com/PrestaShop/ps_facetedsearch/releases/download/v3.14.1/ps_facetedsearch.zip',
}),
psThemeCusto: new ModuleData({
tag: 'ps_themecusto',
name: 'Theme Customization',
}),
contactForm: new ModuleData({
tag: 'contactform',
name: 'Contact form',
}),
themeCustomization: new ModuleData({
tag: 'ps_themecusto',
name: 'Theme Customization',
}),
availableQuantities: new ModuleData({
tag: 'statsstock',
name: 'Available quantities',
}),
mainMenu: new ModuleData({
tag: 'ps_mainmenu',
name: 'Main menu',
}),
keycloak: new ModuleData({
tag: 'keycloak_connector_demo',
name: 'Keycloak OAuth2 connector demo',
releaseZip: 'https://github.com/PrestaShop/keycloak_connector_demo/releases/download/v1.0.4/keycloak_connector_demo.zip',
}),
};