forked from shanecranor/spin-the-wheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.config.mjs
44 lines (44 loc) · 1.12 KB
/
truffle.config.mjs
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
export default {
path: "@gamers-4074/wheel",
name: "wheel",
embeds: [
{
slug: "wheel-viewer",
url: "https://wheel-spin.pages.dev/",
contentPageType: "youtube",
isLoginRequired: true,
iconUrl: "https://wheel-spin.pages.dev/wheel.svg",
windowProps: {
title: "Spin the Wheel",
tooltipDescription: "Submit wheel entries",
initialDimensions: {
width: 600,
height: 500,
},
isResizable: true,
resizeBounds: {
minWidth: 500,
minHeight: 500,
},
},
},
{
slug: "wheel-moderator",
url: "https://wheel-spin.pages.dev/moderator/",
iconUrl: "https://wheel-spin.pages.dev/wheel.svg",
contentPageType: "quickActions",
tileProps: {
bgColor: "#00FF00",
title: "Review Wheel Entries",
},
isLoginRequired: true,
},
{
slug: "wheel-admin-streamer",
url: "https://wheel-spin.pages.dev/admin/",
iconUrl: "https://wheel-spin.pages.dev/wheel.svg",
contentPageType: "appManagement",
isLoginRequired: true,
},
],
};