Compare commits
5 Commits
edge
...
2db5737f22
| Author | SHA1 | Date | |
|---|---|---|---|
| 2db5737f22 | |||
| eae8a6f93d | |||
|
|
537c79e5de | ||
| abfdcd4658 | |||
|
|
90f95520a3 |
@@ -79,6 +79,8 @@ android-app/
|
|||||||
│ │ │ │ │ │ └── PushTickle.kt
|
│ │ │ │ │ │ └── PushTickle.kt
|
||||||
│ │ │ │ │ ├── result/
|
│ │ │ │ │ ├── result/
|
||||||
│ │ │ │ │ │ └── ApiResult.kt
|
│ │ │ │ │ │ └── ApiResult.kt
|
||||||
|
│ │ │ │ │ ├── time/
|
||||||
|
│ │ │ │ │ │ └── Instants.kt
|
||||||
│ │ │ │ │ ├── web/
|
│ │ │ │ │ ├── web/
|
||||||
│ │ │ │ │ │ ├── WebHandoff.kt
|
│ │ │ │ │ │ ├── WebHandoff.kt
|
||||||
│ │ │ │ │ │ └── WebsiteUrls.kt
|
│ │ │ │ │ │ └── WebsiteUrls.kt
|
||||||
@@ -90,6 +92,7 @@ android-app/
|
|||||||
│ │ │ │ │ │ │ ├── AdminDto.kt
|
│ │ │ │ │ │ │ ├── AdminDto.kt
|
||||||
│ │ │ │ │ │ │ ├── AuthDto.kt
|
│ │ │ │ │ │ │ ├── AuthDto.kt
|
||||||
│ │ │ │ │ │ │ ├── ContactDto.kt
|
│ │ │ │ │ │ │ ├── ContactDto.kt
|
||||||
|
│ │ │ │ │ │ │ ├── EventsDto.kt
|
||||||
│ │ │ │ │ │ │ ├── NotificationsDto.kt
|
│ │ │ │ │ │ │ ├── NotificationsDto.kt
|
||||||
│ │ │ │ │ │ │ ├── PageDto.kt
|
│ │ │ │ │ │ │ ├── PageDto.kt
|
||||||
│ │ │ │ │ │ │ ├── PlayerShardDto.kt
|
│ │ │ │ │ │ │ ├── PlayerShardDto.kt
|
||||||
@@ -102,6 +105,7 @@ android-app/
|
|||||||
│ │ │ │ │ │ ├── AdminApi.kt
|
│ │ │ │ │ │ ├── AdminApi.kt
|
||||||
│ │ │ │ │ │ ├── AuthApi.kt
|
│ │ │ │ │ │ ├── AuthApi.kt
|
||||||
│ │ │ │ │ │ ├── AuthRefreshApi.kt
|
│ │ │ │ │ │ ├── AuthRefreshApi.kt
|
||||||
|
│ │ │ │ │ │ ├── EventsApi.kt
|
||||||
│ │ │ │ │ │ ├── MeApi.kt
|
│ │ │ │ │ │ ├── MeApi.kt
|
||||||
│ │ │ │ │ │ ├── NotificationsApi.kt
|
│ │ │ │ │ │ ├── NotificationsApi.kt
|
||||||
│ │ │ │ │ │ ├── PlayerShardApi.kt
|
│ │ │ │ │ │ ├── PlayerShardApi.kt
|
||||||
@@ -117,11 +121,13 @@ android-app/
|
|||||||
│ │ │ │ │ ├── ConnectionRepository.kt
|
│ │ │ │ │ ├── ConnectionRepository.kt
|
||||||
│ │ │ │ │ ├── ContactRepository.kt
|
│ │ │ │ │ ├── ContactRepository.kt
|
||||||
│ │ │ │ │ ├── ContentRepository.kt
|
│ │ │ │ │ ├── ContentRepository.kt
|
||||||
|
│ │ │ │ │ ├── EventsRepository.kt
|
||||||
│ │ │ │ │ ├── NotificationsRepository.kt
|
│ │ │ │ │ ├── NotificationsRepository.kt
|
||||||
│ │ │ │ │ ├── PlayerShardRepository.kt
|
│ │ │ │ │ ├── PlayerShardRepository.kt
|
||||||
│ │ │ │ │ ├── SettingsRepository.kt
|
│ │ │ │ │ ├── SettingsRepository.kt
|
||||||
│ │ │ │ │ ├── ShardFeaturesRepository.kt
|
│ │ │ │ │ ├── ShardFeaturesRepository.kt
|
||||||
│ │ │ │ │ ├── ShardRepository.kt
|
│ │ │ │ │ ├── ShardRepository.kt
|
||||||
|
│ │ │ │ │ ├── SiteCapabilitiesRepository.kt
|
||||||
│ │ │ │ │ └── WikiRepository.kt
|
│ │ │ │ │ └── WikiRepository.kt
|
||||||
│ │ │ │ ├── di/
|
│ │ │ │ ├── di/
|
||||||
│ │ │ │ │ ├── AppModule.kt
|
│ │ │ │ │ ├── AppModule.kt
|
||||||
@@ -157,6 +163,16 @@ android-app/
|
|||||||
│ │ │ │ │ ├── contact/
|
│ │ │ │ │ ├── contact/
|
||||||
│ │ │ │ │ │ ├── ContactScreen.kt
|
│ │ │ │ │ │ ├── ContactScreen.kt
|
||||||
│ │ │ │ │ │ └── ContactViewModel.kt
|
│ │ │ │ │ │ └── ContactViewModel.kt
|
||||||
|
│ │ │ │ │ ├── events/
|
||||||
|
│ │ │ │ │ │ ├── EventScreen.kt
|
||||||
|
│ │ │ │ │ │ ├── EventSeriesScreen.kt
|
||||||
|
│ │ │ │ │ │ ├── EventSeriesViewModel.kt
|
||||||
|
│ │ │ │ │ │ ├── EventsScreen.kt
|
||||||
|
│ │ │ │ │ │ ├── EventsViewModel.kt
|
||||||
|
│ │ │ │ │ │ ├── EventTimes.kt
|
||||||
|
│ │ │ │ │ │ ├── EventViewModel.kt
|
||||||
|
│ │ │ │ │ │ ├── MyEventsScreen.kt
|
||||||
|
│ │ │ │ │ │ └── MyEventsViewModel.kt
|
||||||
│ │ │ │ │ ├── home/
|
│ │ │ │ │ ├── home/
|
||||||
│ │ │ │ │ │ ├── HomeScreen.kt
|
│ │ │ │ │ │ ├── HomeScreen.kt
|
||||||
│ │ │ │ │ │ └── HomeViewModel.kt
|
│ │ │ │ │ │ └── HomeViewModel.kt
|
||||||
@@ -335,6 +351,7 @@ android-app/
|
|||||||
│ │ │ │ │ └── WikiDtoTest.kt
|
│ │ │ │ │ └── WikiDtoTest.kt
|
||||||
│ │ │ │ └── fake/
|
│ │ │ │ └── fake/
|
||||||
│ │ │ │ ├── FakeAdminApi.kt
|
│ │ │ │ ├── FakeAdminApi.kt
|
||||||
|
│ │ │ │ ├── FakeEventsApi.kt
|
||||||
│ │ │ │ ├── FakeNotificationsApi.kt
|
│ │ │ │ ├── FakeNotificationsApi.kt
|
||||||
│ │ │ │ ├── FakePlayerShardApi.kt
|
│ │ │ │ ├── FakePlayerShardApi.kt
|
||||||
│ │ │ │ ├── FakePublicApi.kt
|
│ │ │ │ ├── FakePublicApi.kt
|
||||||
@@ -345,7 +362,8 @@ android-app/
|
|||||||
│ │ │ └── repository/
|
│ │ │ └── repository/
|
||||||
│ │ │ ├── AccountTrustedDevicesTest.kt
|
│ │ │ ├── AccountTrustedDevicesTest.kt
|
||||||
│ │ │ ├── ConnectionVersionGuardTest.kt
|
│ │ │ ├── ConnectionVersionGuardTest.kt
|
||||||
│ │ │ └── ShardFeaturesRepositoryTest.kt
|
│ │ │ ├── ShardFeaturesRepositoryTest.kt
|
||||||
|
│ │ │ └── SiteCapabilitiesRepositoryTest.kt
|
||||||
│ │ ├── ui/
|
│ │ ├── ui/
|
||||||
│ │ │ ├── admin/
|
│ │ │ ├── admin/
|
||||||
│ │ │ │ ├── AdminContentViewModelTest.kt
|
│ │ │ │ ├── AdminContentViewModelTest.kt
|
||||||
@@ -356,8 +374,12 @@ android-app/
|
|||||||
│ │ │ │ └── BrandAssetsTest.kt
|
│ │ │ │ └── BrandAssetsTest.kt
|
||||||
│ │ │ ├── contact/
|
│ │ │ ├── contact/
|
||||||
│ │ │ │ └── ContactViewModelTest.kt
|
│ │ │ │ └── ContactViewModelTest.kt
|
||||||
|
│ │ │ ├── events/
|
||||||
|
│ │ │ │ ├── EventsViewModelsTest.kt
|
||||||
|
│ │ │ │ └── EventTimesTest.kt
|
||||||
│ │ │ ├── navigation/
|
│ │ │ ├── navigation/
|
||||||
│ │ │ │ ├── MenuAccessTest.kt
|
│ │ │ │ ├── MenuAccessTest.kt
|
||||||
|
│ │ │ │ ├── MenuCapabilityGatingTest.kt
|
||||||
│ │ │ │ ├── MenuFeatureGatingTest.kt
|
│ │ │ │ ├── MenuFeatureGatingTest.kt
|
||||||
│ │ │ │ ├── NavOverridesTest.kt
|
│ │ │ │ ├── NavOverridesTest.kt
|
||||||
│ │ │ │ ├── NavPathsTest.kt
|
│ │ │ │ ├── NavPathsTest.kt
|
||||||
|
|||||||
@@ -169,6 +169,8 @@ website/
|
|||||||
│ │ ├── lib/
|
│ │ ├── lib/
|
||||||
│ │ │ ├── adminNav.js
|
│ │ │ ├── adminNav.js
|
||||||
│ │ │ ├── engagementRules.js
|
│ │ │ ├── engagementRules.js
|
||||||
|
│ │ │ ├── eventAuthoring.js
|
||||||
|
│ │ │ ├── eventCalendar.js
|
||||||
│ │ │ ├── format.js
|
│ │ │ ├── format.js
|
||||||
│ │ │ ├── heroLayout.js
|
│ │ │ ├── heroLayout.js
|
||||||
│ │ │ ├── moduleAdmin.js
|
│ │ │ ├── moduleAdmin.js
|
||||||
@@ -216,6 +218,11 @@ website/
|
|||||||
│ │ │ │ │ ├── EngagementSuppressions.jsx
|
│ │ │ │ │ ├── EngagementSuppressions.jsx
|
||||||
│ │ │ │ │ ├── EngagementTemplates.jsx
|
│ │ │ │ │ ├── EngagementTemplates.jsx
|
||||||
│ │ │ │ │ ├── EngagementTriggers.jsx
|
│ │ │ │ │ ├── EngagementTriggers.jsx
|
||||||
|
│ │ │ │ │ ├── EventActions.jsx
|
||||||
|
│ │ │ │ │ ├── EventEditor.jsx
|
||||||
|
│ │ │ │ │ ├── EventRun.jsx
|
||||||
|
│ │ │ │ │ ├── EventsAdmin.jsx
|
||||||
|
│ │ │ │ │ ├── EventsCalendar.jsx
|
||||||
│ │ │ │ │ ├── HeroEditor.jsx
|
│ │ │ │ │ ├── HeroEditor.jsx
|
||||||
│ │ │ │ │ ├── InvitesAdmin.jsx
|
│ │ │ │ │ ├── InvitesAdmin.jsx
|
||||||
│ │ │ │ │ ├── Moderation.jsx
|
│ │ │ │ │ ├── Moderation.jsx
|
||||||
@@ -246,6 +253,7 @@ website/
|
|||||||
│ │ │ │ ├── ForgotPassword.jsx
|
│ │ │ │ ├── ForgotPassword.jsx
|
||||||
│ │ │ │ ├── PlayerAccount.jsx
|
│ │ │ │ ├── PlayerAccount.jsx
|
||||||
│ │ │ │ ├── PlayerAppeals.jsx
|
│ │ │ │ ├── PlayerAppeals.jsx
|
||||||
|
│ │ │ │ ├── PlayerEvents.jsx
|
||||||
│ │ │ │ ├── PlayerInbox.jsx
|
│ │ │ │ ├── PlayerInbox.jsx
|
||||||
│ │ │ │ ├── PlayerLogin.jsx
|
│ │ │ │ ├── PlayerLogin.jsx
|
||||||
│ │ │ │ ├── PlayerNotifications.jsx
|
│ │ │ │ ├── PlayerNotifications.jsx
|
||||||
@@ -258,6 +266,9 @@ website/
|
|||||||
│ │ │ ├── public/
|
│ │ │ ├── public/
|
||||||
│ │ │ │ ├── About.jsx
|
│ │ │ │ ├── About.jsx
|
||||||
│ │ │ │ ├── CmsPage.jsx
|
│ │ │ │ ├── CmsPage.jsx
|
||||||
|
│ │ │ │ ├── EventPage.jsx
|
||||||
|
│ │ │ │ ├── Events.jsx
|
||||||
|
│ │ │ │ ├── EventSeries.jsx
|
||||||
│ │ │ │ ├── FiveOnFriday.jsx
|
│ │ │ │ ├── FiveOnFriday.jsx
|
||||||
│ │ │ │ ├── Maintenance.jsx
|
│ │ │ │ ├── Maintenance.jsx
|
||||||
│ │ │ │ ├── News.jsx
|
│ │ │ │ ├── News.jsx
|
||||||
@@ -279,6 +290,8 @@ website/
|
|||||||
│ │ ├── apiClient.test.js
|
│ │ ├── apiClient.test.js
|
||||||
│ │ ├── emailTemplates.test.js
|
│ │ ├── emailTemplates.test.js
|
||||||
│ │ ├── engagementRules.test.js
|
│ │ ├── engagementRules.test.js
|
||||||
|
│ │ ├── eventAuthoring.test.js
|
||||||
|
│ │ ├── eventCalendar.test.js
|
||||||
│ │ ├── featureGate.test.js
|
│ │ ├── featureGate.test.js
|
||||||
│ │ ├── format.test.js
|
│ │ ├── format.test.js
|
||||||
│ │ ├── heroLayout.test.js
|
│ │ ├── heroLayout.test.js
|
||||||
@@ -352,6 +365,7 @@ website/
|
|||||||
│ │ │ └── validateBlocks.js
|
│ │ │ └── validateBlocks.js
|
||||||
│ │ ├── config/
|
│ │ ├── config/
|
||||||
│ │ │ ├── brand.js
|
│ │ │ ├── brand.js
|
||||||
|
│ │ │ ├── coreEventActions.js
|
||||||
│ │ │ ├── coreStreams.js
|
│ │ │ ├── coreStreams.js
|
||||||
│ │ │ ├── coreTriggers.js
|
│ │ │ ├── coreTriggers.js
|
||||||
│ │ │ ├── csp.js
|
│ │ │ ├── csp.js
|
||||||
@@ -393,6 +407,18 @@ website/
|
|||||||
│ │ │ ├── suppressions.js
|
│ │ │ ├── suppressions.js
|
||||||
│ │ │ ├── templates.js
|
│ │ │ ├── templates.js
|
||||||
│ │ │ └── templateSeeds.js
|
│ │ │ └── templateSeeds.js
|
||||||
|
│ │ ├── events/
|
||||||
|
│ │ │ ├── announce.js
|
||||||
|
│ │ │ ├── authorize.js
|
||||||
|
│ │ │ ├── cleanup.js
|
||||||
|
│ │ │ ├── dispatch.js
|
||||||
|
│ │ │ ├── gates.js
|
||||||
|
│ │ │ ├── ledger.js
|
||||||
|
│ │ │ ├── participants.js
|
||||||
|
│ │ │ ├── price.js
|
||||||
|
│ │ │ ├── recurrence.js
|
||||||
|
│ │ │ ├── spec.js
|
||||||
|
│ │ │ └── verify.js
|
||||||
│ │ ├── middleware/
|
│ │ ├── middleware/
|
||||||
│ │ │ ├── botScore.js
|
│ │ │ ├── botScore.js
|
||||||
│ │ │ ├── loginProtection.js
|
│ │ │ ├── loginProtection.js
|
||||||
@@ -442,6 +468,25 @@ website/
|
|||||||
│ │ │ │ ├── engagementSuppressions.db.js
|
│ │ │ │ ├── engagementSuppressions.db.js
|
||||||
│ │ │ │ ├── engagementTemplates.db.js
|
│ │ │ │ ├── engagementTemplates.db.js
|
||||||
│ │ │ │ └── engagementTemplates.model.js
|
│ │ │ │ └── engagementTemplates.model.js
|
||||||
|
│ │ │ ├── events/
|
||||||
|
│ │ │ │ ├── eventActionSettings.db.js
|
||||||
|
│ │ │ │ ├── eventCalendar.model.js
|
||||||
|
│ │ │ │ ├── eventDefinitions.db.js
|
||||||
|
│ │ │ │ ├── eventDefinitions.model.js
|
||||||
|
│ │ │ │ ├── eventJson.js
|
||||||
|
│ │ │ │ ├── eventPhaseGates.db.js
|
||||||
|
│ │ │ │ ├── eventPublic.model.js
|
||||||
|
│ │ │ │ ├── eventRunBudget.db.js
|
||||||
|
│ │ │ │ ├── eventRunControls.model.js
|
||||||
|
│ │ │ │ ├── eventRunLog.db.js
|
||||||
|
│ │ │ │ ├── eventRunParticipants.db.js
|
||||||
|
│ │ │ │ ├── eventRunResources.db.js
|
||||||
|
│ │ │ │ ├── eventRuns.db.js
|
||||||
|
│ │ │ │ ├── eventRuns.model.js
|
||||||
|
│ │ │ │ ├── eventRunSteps.db.js
|
||||||
|
│ │ │ │ ├── eventSeries.db.js
|
||||||
|
│ │ │ │ ├── eventSeries.model.js
|
||||||
|
│ │ │ │ └── eventVersions.db.js
|
||||||
│ │ │ ├── invites/
|
│ │ │ ├── invites/
|
||||||
│ │ │ │ ├── invites.db.js
|
│ │ │ │ ├── invites.db.js
|
||||||
│ │ │ │ └── invites.model.js
|
│ │ │ │ └── invites.model.js
|
||||||
@@ -559,6 +604,8 @@ website/
|
|||||||
│ │ │ │ │ ├── emailConfig.controller.js
|
│ │ │ │ │ ├── emailConfig.controller.js
|
||||||
│ │ │ │ │ ├── engagement.controller.js
|
│ │ │ │ │ ├── engagement.controller.js
|
||||||
│ │ │ │ │ ├── engagement.router.js
|
│ │ │ │ │ ├── engagement.router.js
|
||||||
|
│ │ │ │ │ ├── events.controller.js
|
||||||
|
│ │ │ │ │ ├── events.router.js
|
||||||
│ │ │ │ │ ├── imageUpload.js
|
│ │ │ │ │ ├── imageUpload.js
|
||||||
│ │ │ │ │ ├── index.js
|
│ │ │ │ │ ├── index.js
|
||||||
│ │ │ │ │ ├── invites.controller.js
|
│ │ │ │ │ ├── invites.controller.js
|
||||||
@@ -607,6 +654,8 @@ website/
|
|||||||
│ │ │ │ ├── player/
|
│ │ │ │ ├── player/
|
||||||
│ │ │ │ │ ├── appeals.controller.js
|
│ │ │ │ │ ├── appeals.controller.js
|
||||||
│ │ │ │ │ ├── appeals.router.js
|
│ │ │ │ │ ├── appeals.router.js
|
||||||
|
│ │ │ │ │ ├── events.controller.js
|
||||||
|
│ │ │ │ │ ├── events.router.js
|
||||||
│ │ │ │ │ ├── index.js
|
│ │ │ │ │ ├── index.js
|
||||||
│ │ │ │ │ ├── teamForum.controller.js
|
│ │ │ │ │ ├── teamForum.controller.js
|
||||||
│ │ │ │ │ ├── teamForum.router.js
|
│ │ │ │ │ ├── teamForum.router.js
|
||||||
@@ -615,6 +664,8 @@ website/
|
|||||||
│ │ │ │ ├── public/
|
│ │ │ │ ├── public/
|
||||||
│ │ │ │ │ ├── engagement.controller.js
|
│ │ │ │ │ ├── engagement.controller.js
|
||||||
│ │ │ │ │ ├── engagement.router.js
|
│ │ │ │ │ ├── engagement.router.js
|
||||||
|
│ │ │ │ │ ├── events.controller.js
|
||||||
|
│ │ │ │ │ ├── events.router.js
|
||||||
│ │ │ │ │ ├── index.js
|
│ │ │ │ │ ├── index.js
|
||||||
│ │ │ │ │ ├── modules.controller.js
|
│ │ │ │ │ ├── modules.controller.js
|
||||||
│ │ │ │ │ ├── modules.router.js
|
│ │ │ │ │ ├── modules.router.js
|
||||||
@@ -646,6 +697,7 @@ website/
|
|||||||
│ │ │ ├── engagementEmit.js
|
│ │ │ ├── engagementEmit.js
|
||||||
│ │ │ ├── engagementRetentionPrune.js
|
│ │ │ ├── engagementRetentionPrune.js
|
||||||
│ │ │ ├── engagementWorker.js
|
│ │ │ ├── engagementWorker.js
|
||||||
|
│ │ │ ├── eventRunner.js
|
||||||
│ │ │ ├── forumHtml.js
|
│ │ │ ├── forumHtml.js
|
||||||
│ │ │ ├── htmlShell.js
|
│ │ │ ├── htmlShell.js
|
||||||
│ │ │ ├── logger.js
|
│ │ │ ├── logger.js
|
||||||
@@ -718,6 +770,27 @@ website/
|
|||||||
│ │ ├── engagementRetentionSql.test.js
|
│ │ ├── engagementRetentionSql.test.js
|
||||||
│ │ ├── engagementTemplatesAdmin.test.js
|
│ │ ├── engagementTemplatesAdmin.test.js
|
||||||
│ │ ├── engagementTriggers.test.js
|
│ │ ├── engagementTriggers.test.js
|
||||||
|
│ │ ├── eventActionRegistry.test.js
|
||||||
|
│ │ ├── eventAnnounce.test.js
|
||||||
|
│ │ ├── eventAuthorize.test.js
|
||||||
|
│ │ ├── eventCleanup.test.js
|
||||||
|
│ │ ├── eventGates.test.js
|
||||||
|
│ │ ├── eventIntegrations.test.js
|
||||||
|
│ │ ├── eventLedger.test.js
|
||||||
|
│ │ ├── eventModuleContract.test.js
|
||||||
|
│ │ ├── eventParticipants.test.js
|
||||||
|
│ │ ├── eventPrice.test.js
|
||||||
|
│ │ ├── eventPublic.test.js
|
||||||
|
│ │ ├── eventRecurrence.test.js
|
||||||
|
│ │ ├── eventRunControls.test.js
|
||||||
|
│ │ ├── eventRunner.test.js
|
||||||
|
│ │ ├── eventRunnerSql.test.js
|
||||||
|
│ │ ├── eventsAdmin.test.js
|
||||||
|
│ │ ├── eventSchedule.test.js
|
||||||
|
│ │ ├── eventSeries.test.js
|
||||||
|
│ │ ├── eventSpec.test.js
|
||||||
|
│ │ ├── eventsRoles.test.js
|
||||||
|
│ │ ├── eventVerify.test.js
|
||||||
│ │ ├── honeypot.test.js
|
│ │ ├── honeypot.test.js
|
||||||
│ │ ├── htmlShell.test.js
|
│ │ ├── htmlShell.test.js
|
||||||
│ │ ├── inviteController.test.js
|
│ │ ├── inviteController.test.js
|
||||||
|
|||||||
Reference in New Issue
Block a user