Spaces:
Paused
Paused
Mohammed Foud commited on
Commit ·
65edeec
1
Parent(s): fad19b1
Fix some Bugs and add some Feathers
Browse files
src/bots/handlers/webookHandlers.ts
CHANGED
|
@@ -290,20 +290,23 @@ export async function handleWeBookEventInfoByUrl(ctx: BotContext) {
|
|
| 290 |
// info += `<b>Slug:</b> ${event.slug || 'None'}\n`;
|
| 291 |
// info += `<b>Ticketing URL Slug:</b> ${event.ticketingUrlSlug || 'None'}\n`;
|
| 292 |
info += `<b>Starting Price:</b> ${event.startingPrice || 'None'} ${event.currencyCode || ''}\n`;
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
|
| 296 |
-
|
| 297 |
-
|
|
|
|
|
|
|
| 298 |
info += `<b>Event Type:</b> ${event.eventType || 'None'}\n`;
|
| 299 |
// info += `<b>Auth Guard:</b> ${event.authGaurd ? 'Yes' : 'No'}\n`;
|
| 300 |
info += `<b>Button Link:</b> ${event.buttonLink || 'None'}\n`;
|
| 301 |
info += `<b>Is Coming Soon:</b> ${event.isComingSoon ? 'Yes' : 'No'}\n`;
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
|
| 305 |
-
|
| 306 |
-
|
|
|
|
| 307 |
|
| 308 |
// // Images
|
| 309 |
// if (event.image11) {
|
|
|
|
| 290 |
// info += `<b>Slug:</b> ${event.slug || 'None'}\n`;
|
| 291 |
// info += `<b>Ticketing URL Slug:</b> ${event.ticketingUrlSlug || 'None'}\n`;
|
| 292 |
info += `<b>Starting Price:</b> ${event.startingPrice || 'None'} ${event.currencyCode || ''}\n`;
|
| 293 |
+
|
| 294 |
+
info += `<b>Is Streaming Event:</b> ${event.isStreamingEvent ? 'Yes' : 'No'}\n`;
|
| 295 |
+
info += `<b>Zone Entry Included:</b> ${event.zoneEntryIncluded ? 'Yes' : 'No'}\n`;
|
| 296 |
+
info += `<b>Streaming URL:</b> ${event.streamingUrl || 'None'}\n`;
|
| 297 |
+
info += `<b>Button Label:</b> ${event.buttonLabel || 'None'}\n`;
|
| 298 |
+
info += `<b>Card Button Label:</b> ${event.cardButtonLabel || 'None'}\n`;
|
| 299 |
+
|
| 300 |
info += `<b>Event Type:</b> ${event.eventType || 'None'}\n`;
|
| 301 |
// info += `<b>Auth Guard:</b> ${event.authGaurd ? 'Yes' : 'No'}\n`;
|
| 302 |
info += `<b>Button Link:</b> ${event.buttonLink || 'None'}\n`;
|
| 303 |
info += `<b>Is Coming Soon:</b> ${event.isComingSoon ? 'Yes' : 'No'}\n`;
|
| 304 |
+
|
| 305 |
+
info += `<b>What To Know:</b> ${event.whatToKnow || 'None'}\n`;
|
| 306 |
+
info += `<b>Special Promotion:</b> ${event.specialPromotion || 'None'}\n`;
|
| 307 |
+
info += `<b>Show Resell Banner:</b> ${event.showResellBanner ? 'Yes' : 'No'}\n`;
|
| 308 |
+
info += `<b>Organization Slug:</b> ${event.organizationSlug || 'None'}\n`;
|
| 309 |
+
info += `<b>Visibility:</b> ${event.visibility || 'None'}\n`;
|
| 310 |
|
| 311 |
// // Images
|
| 312 |
// if (event.image11) {
|