├── vendor
└── .gitkeep
├── translations
└── excluded.pot
├── tests
├── acceptance
│ └── acceptance-test.js
├── unit
│ ├── routes
│ │ ├── events
│ │ │ └── view
│ │ │ │ ├── team-test.ts
│ │ │ │ └── team
│ │ │ │ ├── index-test.ts
│ │ │ │ └── permissions-test.ts
│ │ └── public
│ │ │ ├── speaker
│ │ │ └── view-test.js
│ │ │ └── stream
│ │ │ └── view-test.ts
│ ├── services
│ │ ├── cache-test.ts
│ │ └── bug-tracker-test.ts
│ └── utils
│ │ └── text-test.ts
├── helpers
│ └── stubs
│ │ └── services
│ │ └── -routing.js
└── test-helper.js
├── app
├── templates
│ ├── orders.hbs
│ ├── public
│ │ ├── role-invites.hbs
│ │ ├── cfs
│ │ │ └── index.hbs
│ │ ├── stream
│ │ │ └── view.hbs
│ │ └── coc.hbs
│ ├── admin
│ │ ├── reports
│ │ │ ├── index.hbs
│ │ │ ├── system-logs
│ │ │ │ ├── index.hbs
│ │ │ │ ├── mail-logs.hbs
│ │ │ │ ├── activity-logs.hbs
│ │ │ │ └── notification-logs.hbs
│ │ │ └── kubernetes-server-logs.hbs
│ │ ├── users
│ │ │ ├── view.hbs
│ │ │ └── view
│ │ │ │ ├── index.hbs
│ │ │ │ ├── events
│ │ │ │ └── index.hbs
│ │ │ │ ├── account
│ │ │ │ ├── applications.hbs
│ │ │ │ ├── email-preferences.hbs
│ │ │ │ └── profile.hbs
│ │ │ │ ├── sessions
│ │ │ │ └── list.hbs
│ │ │ │ └── tickets
│ │ │ │ └── list.hbs
│ │ ├── permissions
│ │ │ └── index.hbs
│ │ ├── settings
│ │ │ ├── images.hbs
│ │ │ ├── index.hbs
│ │ │ ├── analytics.hbs
│ │ │ ├── payment-gateway.hbs
│ │ │ ├── ticket-fees.hbs
│ │ │ ├── microservices.hbs
│ │ │ └── billing.hbs
│ │ ├── content
│ │ │ └── index.hbs
│ │ ├── events
│ │ │ └── import.hbs
│ │ └── permissions.hbs
│ ├── components
│ │ ├── paypal-button.hbs
│ │ ├── modals
│ │ │ └── modal-base.hbs
│ │ ├── widgets
│ │ │ ├── forms
│ │ │ │ ├── places-autocomplete.hbs
│ │ │ │ ├── date-picker.hbs
│ │ │ │ ├── color-picker.hbs
│ │ │ │ └── time-picker.hbs
│ │ │ └── twitter-timeline.hbs
│ │ ├── currency-amount.hbs
│ │ ├── smart-overflow.hbs
│ │ ├── ui-table
│ │ │ ├── cell
│ │ │ │ ├── cell-event-state.hbs
│ │ │ │ ├── cell-link.hbs
│ │ │ │ ├── admin
│ │ │ │ │ ├── reports
│ │ │ │ │ │ └── system-logs
│ │ │ │ │ │ │ ├── activity-logs
│ │ │ │ │ │ │ └── cell-time.hbs
│ │ │ │ │ │ │ ├── notification-logs
│ │ │ │ │ │ │ ├── cell-time.hbs
│ │ │ │ │ │ │ ├── cell-sanitize.hbs
│ │ │ │ │ │ │ └── cell-for.hbs
│ │ │ │ │ │ │ └── mail-logs
│ │ │ │ │ │ │ └── cell-mail-message.hbs
│ │ │ │ │ ├── sales
│ │ │ │ │ │ ├── status
│ │ │ │ │ │ │ └── cell-amount.hbs
│ │ │ │ │ │ ├── cell-amount.hbs
│ │ │ │ │ │ └── cell-action.hbs
│ │ │ │ │ ├── users
│ │ │ │ │ │ ├── cell-created-at.hbs
│ │ │ │ │ │ └── cell-status.hbs
│ │ │ │ │ └── events
│ │ │ │ │ │ ├── event-no-front.hbs
│ │ │ │ │ │ ├── event-is-featured.hbs
│ │ │ │ │ │ └── event-is-promoted.hbs
│ │ │ │ ├── cell-sponsor-sanitize.hbs
│ │ │ │ ├── events
│ │ │ │ │ ├── cell-amount.hbs
│ │ │ │ │ ├── view
│ │ │ │ │ │ ├── tickets
│ │ │ │ │ │ │ ├── access-codes
│ │ │ │ │ │ │ │ └── cell-url.hbs
│ │ │ │ │ │ │ ├── discount-codes
│ │ │ │ │ │ │ │ ├── cell-validity.hbs
│ │ │ │ │ │ │ │ ├── cell-url.hbs
│ │ │ │ │ │ │ │ ├── cell-value.hbs
│ │ │ │ │ │ │ │ └── cell-status.hbs
│ │ │ │ │ │ │ ├── attendees
│ │ │ │ │ │ │ │ ├── cell-date.hbs
│ │ │ │ │ │ │ │ └── cell-price.hbs
│ │ │ │ │ │ │ └── orders
│ │ │ │ │ │ │ │ ├── cell-date.hbs
│ │ │ │ │ │ │ │ └── cell-amount.hbs
│ │ │ │ │ │ ├── speakers
│ │ │ │ │ │ │ ├── speaker-mobile.hbs
│ │ │ │ │ │ │ ├── cell-is-featured.hbs
│ │ │ │ │ │ │ ├── speaker-logo.hbs
│ │ │ │ │ │ │ └── cell-simple-sessions.hbs
│ │ │ │ │ │ ├── sessions
│ │ │ │ │ │ │ ├── cell-session-state.hbs
│ │ │ │ │ │ │ └── cell-is-mail-sent.hbs
│ │ │ │ │ │ └── videoroom
│ │ │ │ │ │ │ └── cell-video-url.hbs
│ │ │ │ │ ├── cell-download-invoice.hbs
│ │ │ │ │ └── cell-action.hbs
│ │ │ │ ├── cell-input-number.hbs
│ │ │ │ ├── cell-image.hbs
│ │ │ │ ├── cell-sponsor-image.hbs
│ │ │ │ ├── cell-validity.hbs
│ │ │ │ ├── cell-speakers.hbs
│ │ │ │ ├── cell-label.hbs
│ │ │ │ └── cell-simple-date.hbs
│ │ │ ├── header-sorting-icons.hbs
│ │ │ ├── header-rows-grouped.hbs
│ │ │ └── expand-row-cell.hbs
│ │ ├── n-times.hbs
│ │ ├── orders
│ │ │ ├── ticket-price.hbs
│ │ │ └── organizer-info.hbs
│ │ ├── public
│ │ │ ├── speaker-list.hbs
│ │ │ ├── sponsor-item.hbs
│ │ │ ├── featured-speaker-list.hbs
│ │ │ ├── copyright-item.hbs
│ │ │ └── session-filter.hbs
│ │ ├── welcome-header.hbs
│ │ ├── tables
│ │ │ ├── headers
│ │ │ │ └── sort.hbs
│ │ │ └── utilities
│ │ │ │ └── search-box.hbs
│ │ ├── scheduler
│ │ │ └── unscheduled-session.hbs
│ │ ├── account
│ │ │ └── application-section.hbs
│ │ └── create-session-message.hbs
│ ├── events
│ │ ├── view
│ │ │ ├── videoroom.hbs
│ │ │ ├── team
│ │ │ │ └── index.hbs
│ │ │ ├── edit
│ │ │ │ ├── attendee.hbs
│ │ │ │ ├── sponsors.hbs
│ │ │ │ ├── basic-details.hbs
│ │ │ │ ├── other-details.hbs
│ │ │ │ └── sessions-speakers.hbs
│ │ │ ├── videoroom
│ │ │ │ ├── create.hbs
│ │ │ │ └── edit.hbs
│ │ │ ├── tickets
│ │ │ │ ├── access-codes
│ │ │ │ │ ├── edit.hbs
│ │ │ │ │ └── create.hbs
│ │ │ │ ├── add-order.hbs
│ │ │ │ └── discount-codes
│ │ │ │ │ ├── edit.hbs
│ │ │ │ │ └── create.hbs
│ │ │ └── edit.hbs
│ │ └── list.hbs
│ ├── account
│ │ ├── danger-zone.hbs
│ │ ├── applications.hbs
│ │ ├── email-preferences.hbs
│ │ ├── billing
│ │ │ └── payment-info.hbs
│ │ ├── profile.hbs
│ │ └── password.hbs
│ ├── notifications.hbs
│ ├── not-found.hbs
│ ├── loading.hbs
│ ├── login.hbs
│ ├── reset-password.hbs
│ ├── register.hbs
│ └── error.hbs
├── resolver.js
├── styles
│ ├── partials
│ │ ├── errors.scss
│ │ ├── fullcalendar.scss
│ │ ├── buttons.scss
│ │ ├── uploader.scss
│ │ └── text.scss
│ ├── pages
│ │ ├── all.scss
│ │ └── public.scss
│ ├── components
│ │ ├── forms
│ │ │ ├── login-form.scss
│ │ │ ├── register-form.scss
│ │ │ ├── ticket-input.scss
│ │ │ ├── user-profile-form.scss
│ │ │ ├── forgot-password-form.scss
│ │ │ └── basic-details-step.scss
│ │ ├── order-summary.scss
│ │ ├── events
│ │ │ └── view
│ │ │ │ └── tickets
│ │ │ │ └── add-order.scss
│ │ ├── infinity-loader.scss
│ │ ├── tabbed-navigation.scss
│ │ ├── ticket-list.scss
│ │ ├── ui-table.scss
│ │ └── all.scss
│ └── app.scss
├── components
│ ├── ui-table
│ │ ├── cell
│ │ │ ├── cell-date.hbs
│ │ │ ├── cell-date.js
│ │ │ ├── cell-link.js
│ │ │ ├── cell-event.js
│ │ │ ├── cell-image.js
│ │ │ ├── cell-label.js
│ │ │ ├── cell-roles.js
│ │ │ ├── cell-buttons.js
│ │ │ ├── cell-tickets.js
│ │ │ ├── cell-validity.js
│ │ │ ├── cell-code-buttons.js
│ │ │ ├── cell-event-date.js
│ │ │ ├── cell-sessions.js
│ │ │ ├── cell-speakers.js
│ │ │ ├── events
│ │ │ │ ├── cell-action.js
│ │ │ │ ├── cell-amount.js
│ │ │ │ └── view
│ │ │ │ │ ├── sessions
│ │ │ │ │ ├── cell-rating.js
│ │ │ │ │ ├── cell-is-mail-sent.js
│ │ │ │ │ ├── cell-lock-session.js
│ │ │ │ │ ├── cell-session-title.js
│ │ │ │ │ ├── cell-notify.hbs
│ │ │ │ │ └── cell-notify.js
│ │ │ │ │ ├── speakers
│ │ │ │ │ ├── cell-buttons.js
│ │ │ │ │ ├── speaker-logo.js
│ │ │ │ │ ├── speaker-mobile.js
│ │ │ │ │ ├── cell-is-featured.js
│ │ │ │ │ └── cell-simple-sessions.js
│ │ │ │ │ ├── tickets
│ │ │ │ │ ├── orders
│ │ │ │ │ │ ├── cell-date.js
│ │ │ │ │ │ ├── cell-action.js
│ │ │ │ │ │ ├── cell-amount.js
│ │ │ │ │ │ ├── cell-order.js
│ │ │ │ │ │ └── cell-actions.js
│ │ │ │ │ ├── access-codes
│ │ │ │ │ │ ├── cell-url.js
│ │ │ │ │ │ └── cell-actions.js
│ │ │ │ │ ├── attendees
│ │ │ │ │ │ ├── cell-order.js
│ │ │ │ │ │ ├── cell-price.js
│ │ │ │ │ │ └── cell-action.js
│ │ │ │ │ ├── discount-codes
│ │ │ │ │ │ ├── cell-url.js
│ │ │ │ │ │ ├── cell-value.js
│ │ │ │ │ │ ├── cell-actions.js
│ │ │ │ │ │ ├── cell-status.js
│ │ │ │ │ │ └── cell-validity.js
│ │ │ │ │ ├── cell-add-order-price.js
│ │ │ │ │ ├── cell-add-order-total.js
│ │ │ │ │ └── cell-add-order-quantity.js
│ │ │ │ │ └── videoroom
│ │ │ │ │ └── cell-additional-info.js
│ │ │ ├── admin
│ │ │ │ ├── sales
│ │ │ │ │ ├── cell-action.js
│ │ │ │ │ ├── status
│ │ │ │ │ │ ├── cell-dated.js
│ │ │ │ │ │ └── cell-amount.js
│ │ │ │ │ └── invoice-user.hbs
│ │ │ │ ├── users
│ │ │ │ │ ├── cell-status.js
│ │ │ │ │ ├── cell-actions.js
│ │ │ │ │ ├── cell-created-at.js
│ │ │ │ │ ├── cell-event-roles.js
│ │ │ │ │ ├── cell-first-name.js
│ │ │ │ │ ├── cell-system-roles.js
│ │ │ │ │ ├── cell-user-links.js
│ │ │ │ │ └── cell-last-accessed-at.js
│ │ │ │ ├── messages
│ │ │ │ │ └── cell-options.js
│ │ │ │ ├── events
│ │ │ │ │ ├── event-is-featured.js
│ │ │ │ │ └── event-is-promoted.js
│ │ │ │ └── reports
│ │ │ │ │ └── system-logs
│ │ │ │ │ ├── activity-logs
│ │ │ │ │ └── cell-time.js
│ │ │ │ │ ├── notification-logs
│ │ │ │ │ ├── cell-for.js
│ │ │ │ │ ├── cell-time.js
│ │ │ │ │ └── cell-sanitize.js
│ │ │ │ │ └── mail-logs
│ │ │ │ │ └── cell-mail-message.js
│ │ │ ├── cell-event-general.js
│ │ │ ├── cell-event-state.js
│ │ │ ├── cell-input-number.js
│ │ │ ├── cell-simple-date.js
│ │ │ ├── cell-sponsor-image.js
│ │ │ ├── cell-title-message.js
│ │ │ ├── cell-simple-buttons.js
│ │ │ ├── cell-sponsor-options.js
│ │ │ ├── cell-sessions-dashboard.js
│ │ │ ├── cell-speakers-dashboard.js
│ │ │ └── cell-sponsor-sanitize.js
│ │ ├── expand-row-cell.js
│ │ ├── header-rows-grouped.js
│ │ └── header-sorting-icons.js
│ ├── range-slider.js
│ ├── public
│ │ ├── stream
│ │ │ ├── jitsi-stream.hbs
│ │ │ └── join-video.hbs
│ │ ├── speaker-list.js
│ │ ├── featured-speaker-list.js
│ │ ├── social-links.js
│ │ ├── sponsor-item.hbs
│ │ ├── copyright-item.js
│ │ ├── session-filter.js
│ │ ├── sponsor-list.hbs
│ │ └── event-venue.hbs
│ ├── errors
│ │ ├── not-found.js
│ │ ├── generic-error.js
│ │ ├── server-error.js
│ │ └── forbidden-error.js
│ ├── event-invoice
│ │ ├── event-info.js
│ │ ├── payee-info.js
│ │ ├── billing-info.js
│ │ └── invoice-summary.js
│ ├── tables
│ │ ├── default.js
│ │ └── utilities
│ │ │ └── page-size-input.js
│ ├── orders
│ │ ├── organizer-info.js
│ │ ├── event-info.js
│ │ └── ticket-holder.js
│ ├── forms
│ │ ├── admin
│ │ │ └── settings
│ │ │ │ ├── system
│ │ │ │ ├── mail-settings.js
│ │ │ │ ├── captcha-form.js
│ │ │ │ ├── social-media-token.js
│ │ │ │ └── order-expiry-form.js
│ │ │ │ └── analytics-form.js
│ │ ├── events
│ │ │ └── view
│ │ │ │ └── edit-session.js
│ │ ├── session-section.js
│ │ ├── wizard
│ │ │ └── custom-forms
│ │ │ │ └── table.ts
│ │ └── speaker-section.js
│ ├── modals
│ │ ├── confirm-user-delete-modal.js
│ │ ├── event-revision.js
│ │ ├── event-share-modal.js
│ │ ├── proposal-withdraw-modal.js
│ │ ├── login-signup-modal.js
│ │ ├── simple-modal.js
│ │ ├── publish-unpublish-modal.js
│ │ ├── room-info-modal.js
│ │ ├── event-delete-modal.js
│ │ └── user-delete-modal.js
│ ├── n-times.js
│ ├── session-card.js
│ ├── events
│ │ ├── view
│ │ │ └── overview
│ │ │ │ ├── event-sponsors.js
│ │ │ │ ├── speaker-session.js
│ │ │ │ ├── event-setup-checklist.js
│ │ │ │ └── general-info.js
│ │ └── imports-history-section.js
│ ├── welcome-header.js
│ └── widgets
│ │ └── forms
│ │ └── billing-info.js
├── controllers
│ ├── events
│ │ └── view
│ │ │ ├── videoroom.js
│ │ │ └── videoroom
│ │ │ ├── create.js
│ │ │ └── edit.js
│ ├── account
│ │ └── billing
│ │ │ └── invoices.js
│ ├── events.js
│ ├── public
│ │ ├── schedule.js
│ │ └── speakers.js
│ ├── reset-password.js
│ ├── admin
│ │ └── sales
│ │ │ ├── locations.js
│ │ │ ├── organizers.js
│ │ │ └── discounted-events.js
│ └── my-tickets
│ │ ├── past.js
│ │ └── upcoming.js
├── session-stores
│ └── application.js
├── utils
│ ├── testing.js
│ ├── form.js
│ ├── dictionary
│ │ ├── genders.ts
│ │ ├── age-groups.ts
│ │ ├── date-time.ts
│ │ ├── sessions.ts
│ │ └── amazon-s3-regions.ts
│ ├── string.js
│ ├── patches
│ │ └── fullcalendar.js
│ └── sort.ts
├── extensions
│ └── ember-table
│ │ ├── component.js
│ │ └── template.hbs
├── initializers
│ ├── accounting.js
│ └── extensions.js
├── models
│ ├── service.js
│ ├── panel-permission.js
│ ├── admin-sales-by-location.js
│ ├── order-statistics-ticket.js
│ ├── admin-sales-by-marketer.js
│ ├── admin-statistics-event.js
│ ├── order-statistics-event.js
│ ├── admin-sales-by-organizer.js
│ ├── ticket-fee.js
│ ├── admin-statistics-mail.js
│ ├── custom-form-option.js
│ ├── custom-system-role.js
│ ├── event-type.js
│ ├── event-location.js
│ ├── user-permission.js
│ ├── import-job.js
│ ├── role.js
│ ├── mail.js
│ ├── stripe-authorization.js
│ ├── admin-sales-by-event.js
│ ├── admin-sales-discounted.js
│ ├── event-topic.js
│ ├── admin-statistics-session.js
│ ├── base.js
│ ├── activity.js
│ ├── session-type.js
│ ├── admin-sales-invoice.js
│ ├── page.js
│ ├── event-sub-topic.js
│ ├── admin-sales-fee.js
│ ├── feedback.js
│ ├── event-copyright.js
│ └── sponsor.js
├── routes
│ ├── account
│ │ ├── billing
│ │ │ ├── invoices.js
│ │ │ ├── payment-info.js
│ │ │ ├── invoices
│ │ │ │ └── index.js
│ │ │ └── index.js
│ │ ├── index.js
│ │ ├── password.js
│ │ ├── billing.js
│ │ └── applications.js
│ ├── admin
│ │ ├── users
│ │ │ ├── view.js
│ │ │ ├── view
│ │ │ │ ├── index.js
│ │ │ │ ├── account
│ │ │ │ │ ├── profile.js
│ │ │ │ │ └── applications.js
│ │ │ │ ├── events
│ │ │ │ │ └── index.js
│ │ │ │ ├── events.js
│ │ │ │ ├── tickets.js
│ │ │ │ ├── sessions.js
│ │ │ │ ├── tickets
│ │ │ │ │ └── index.js
│ │ │ │ └── account.js
│ │ │ └── index.js
│ │ ├── events.js
│ │ ├── sales.js
│ │ ├── users.js
│ │ ├── content.js
│ │ ├── reports.js
│ │ ├── events
│ │ │ ├── import.js
│ │ │ └── index.js
│ │ ├── permissions.js
│ │ ├── settings
│ │ │ ├── billing.js
│ │ │ ├── index.js
│ │ │ ├── analytics.js
│ │ │ ├── microservices.js
│ │ │ └── payment-gateway.js
│ │ ├── reports
│ │ │ ├── system-logs.js
│ │ │ ├── kubernetes-server-logs.js
│ │ │ ├── index.js
│ │ │ └── system-logs
│ │ │ │ └── index.js
│ │ ├── permissions
│ │ │ └── index.js
│ │ ├── content
│ │ │ ├── pages.js
│ │ │ ├── translations.js
│ │ │ └── system-images
│ │ │ │ └── list.js
│ │ ├── sales
│ │ │ ├── revenue.js
│ │ │ ├── locations.js
│ │ │ ├── marketer.js
│ │ │ ├── organizers.js
│ │ │ └── discounted-events.js
│ │ ├── settings.js
│ │ ├── sessions
│ │ │ └── index.js
│ │ └── sessions.js
│ ├── account.js
│ ├── public
│ │ ├── cfs.js
│ │ ├── coc.js
│ │ ├── speaker
│ │ │ └── view.js
│ │ ├── sessions-index.js
│ │ └── session
│ │ │ └── view.js
│ ├── events
│ │ ├── view
│ │ │ ├── tickets.js
│ │ │ ├── settings.js
│ │ │ ├── settings
│ │ │ │ ├── export.js
│ │ │ │ └── index.js
│ │ │ ├── team.ts
│ │ │ ├── tickets
│ │ │ │ ├── attendees.js
│ │ │ │ ├── access-codes.js
│ │ │ │ ├── discount-codes.js
│ │ │ │ ├── orders.js
│ │ │ │ ├── orders
│ │ │ │ │ └── index.js
│ │ │ │ ├── attendees
│ │ │ │ │ └── index.js
│ │ │ │ ├── discount-codes
│ │ │ │ │ └── index.js
│ │ │ │ └── access-codes
│ │ │ │ │ └── index.js
│ │ │ ├── sessions
│ │ │ │ └── index.js
│ │ │ ├── videoroom
│ │ │ │ └── index.js
│ │ │ ├── sessions.js
│ │ │ ├── speakers.js
│ │ │ ├── videoroom.js
│ │ │ ├── speakers
│ │ │ │ └── index.js
│ │ │ └── edit
│ │ │ │ └── basic-details.js
│ │ └── index.js
│ ├── my-tickets
│ │ ├── upcoming.js
│ │ ├── index.js
│ │ └── upcoming
│ │ │ └── index.js
│ ├── not-found.js
│ ├── notifications
│ │ └── index.js
│ ├── events.js
│ ├── oauth.js
│ ├── orders.js
│ ├── login.js
│ ├── my-sessions.js
│ ├── my-tickets.js
│ ├── notifications.js
│ ├── logout.js
│ └── register.js
├── serializers
│ ├── event-topic.js
│ └── event-sub-topic.js
├── helpers
│ ├── is-input-field.js
│ ├── random.ts
│ ├── custom-related-field.js
│ ├── includes.js
│ ├── not-includes.js
│ ├── currency-name.js
│ ├── url-encode.js
│ ├── sanitize.js
│ ├── session-color.js
│ ├── currency-symbol.js
│ ├── text-color.ts
│ ├── payment-icon.js
│ ├── ticket-attendees.js
│ └── can-modify-order.js
├── adapters
│ ├── admin-sales-fee.js
│ ├── admin-sales-by-event.js
│ ├── admin-sales-invoice.js
│ ├── admin-statistics-mail.js
│ ├── admin-statistics-user.js
│ ├── admin-sales-discounted.js
│ ├── admin-statistics-event.js
│ ├── admin-sales-by-location.js
│ ├── admin-sales-by-marketer.js
│ ├── admin-sales-by-organizer.js
│ ├── admin-statistics-session.js
│ ├── user.js
│ ├── access-code.js
│ └── discount-code.js
├── transforms
│ └── moment.js
└── app.js
├── .eslintignore
├── .watchmanconfig
├── public
├── robots.txt
├── favicon.ico
├── images
│ ├── fdroid.png
│ ├── landing.jpg
│ ├── android-img.jpg
│ ├── attendee-app.jpg
│ ├── google-play.png
│ ├── copyright
│ │ ├── pdd.png
│ │ ├── pdw.png
│ │ ├── pdd-logo.png
│ │ ├── pdw-logo.png
│ │ ├── attribution.png
│ │ ├── attribution-nc.png
│ │ ├── attribution-nd.png
│ │ ├── attribution-sa.png
│ │ ├── attribution-logo.png
│ │ ├── attribution-nc-nd.png
│ │ ├── attribution-nc-sa.png
│ │ ├── attribution-nc-logo.png
│ │ ├── attribution-nd-logo.png
│ │ ├── attribution-sa-logo.png
│ │ ├── attribution-nc-nd-logo.png
│ │ └── attribution-nc-sa-logo.png
│ ├── organizer-app.jpg
│ ├── pricing-header.jpg
│ ├── organizer-android.jpg
│ ├── app-landing-header.jpg
│ ├── payment-logos
│ │ ├── alipay.png
│ │ ├── omise.png
│ │ ├── paypal.png
│ │ ├── paytm.png
│ │ └── stripe.png
│ └── placeholders
│ │ ├── Other.jpg
│ │ └── avatar.png
└── fonts
│ ├── lato-v17-latin-100.woff
│ ├── lato-v17-latin-100.woff2
│ ├── lato-v17-latin-300.woff
│ ├── lato-v17-latin-300.woff2
│ ├── lato-v17-latin-700.woff
│ ├── lato-v17-latin-700.woff2
│ ├── lato-v17-latin-900.woff
│ ├── lato-v17-latin-900.woff2
│ ├── lato-v17-latin-regular.woff
│ └── lato-v17-latin-regular.woff2
├── config
├── l10n-convert.js
├── optional-features.json
├── l10n-extract.js
├── nginx.conf
└── targets.js
├── crowdin.yml
├── lib
├── cache-updater
│ └── package.json
└── start-title
│ ├── package.json
│ └── index.js
├── docs
└── images
│ └── Frontend_Branding.png
├── .env.example
├── kubernetes
├── travis
│ └── eventyay-b3ebbd09f2d2.json.enc
├── yamls
│ └── frontend
│ │ ├── frontend-service.yml
│ │ └── ingress-notls.yml
└── deploy.sh
├── types
├── ember-data
│ └── types
│ │ └── registries
│ │ └── model.d.ts
├── open-event-frontend
│ └── index.d.ts
└── global.d.ts
├── hooks
└── build
├── scripts
├── container_start.sh
└── test_fastboot.sh
├── netlify.toml
├── fastboot
└── initializers
│ └── ajax.js
├── .ember-cli
├── docker-compose.yml
├── app.json
└── .editorconfig
/vendor/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/translations/excluded.pot:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/acceptance/acceptance-test.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/templates/orders.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
2 |
--------------------------------------------------------------------------------
/app/templates/public/role-invites.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
--------------------------------------------------------------------------------
/app/templates/admin/reports/index.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
2 |
--------------------------------------------------------------------------------
/app/templates/admin/users/view.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
2 |
--------------------------------------------------------------------------------
/app/templates/admin/users/view/index.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
--------------------------------------------------------------------------------
/app/templates/components/paypal-button.hbs:
--------------------------------------------------------------------------------
1 | {{yield}}
--------------------------------------------------------------------------------
/app/templates/admin/permissions/index.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
2 |
--------------------------------------------------------------------------------
/app/templates/admin/users/view/events/index.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
--------------------------------------------------------------------------------
/app/templates/events/view/videoroom.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
2 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | vendor
2 | app/utils/l10n-fingerprint-map.js
3 |
--------------------------------------------------------------------------------
/app/templates/components/modals/modal-base.hbs:
--------------------------------------------------------------------------------
1 | {{yield}}
2 |
--------------------------------------------------------------------------------
/app/templates/components/widgets/forms/places-autocomplete.hbs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {
2 | "ignore_dirs": ["tmp", "dist"]
3 | }
4 |
--------------------------------------------------------------------------------
/app/templates/admin/reports/system-logs/index.hbs:
--------------------------------------------------------------------------------
1 | {{outlet}}
2 |
--------------------------------------------------------------------------------
/app/templates/components/currency-amount.hbs:
--------------------------------------------------------------------------------
1 | {{this.modifiedAmount}}
2 |
--------------------------------------------------------------------------------
/app/templates/components/smart-overflow.hbs:
--------------------------------------------------------------------------------
1 | {{yield}}
2 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # http://www.robotstxt.org
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/app/templates/account/danger-zone.hbs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/templates/components/ui-table/cell/events/cell-download-invoice.hbs:
--------------------------------------------------------------------------------
1 |
2 | {{@record}}
3 |
4 |
--------------------------------------------------------------------------------
/app/templates/components/ui-table/cell/events/view/sessions/cell-session-state.hbs:
--------------------------------------------------------------------------------
1 |
2 |