├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── build_branch.yml │ ├── check_health.sh │ ├── prevent_file_changes.yml │ └── publish_docs.yml ├── .gitignore ├── .jazzy.yaml ├── .swift-format ├── .swift-version ├── Dockerfile ├── LICENSE ├── Package.resolved ├── Package.swift ├── Procfile ├── README.md ├── Sources ├── gd │ ├── module.modulemap │ └── swiftgd_gd.h ├── gdOverrides │ ├── gd_jpeg_custom.c │ └── gd_jpeg_custom.h ├── jpeg │ ├── module.modulemap │ └── swift_jpeg.h └── swiftarr │ ├── Commands │ ├── PruneEventForums.swift │ └── ScheduleGenerator.swift │ ├── Controllers │ ├── AdminController.swift │ ├── AlertController.swift │ ├── AuthController.swift │ ├── BoardgameController.swift │ ├── ClientController.swift │ ├── EventController.swift │ ├── FeedbackController.swift │ ├── FezController.swift │ ├── ForumController.swift │ ├── HuntController.swift │ ├── ImageController.swift │ ├── KaraokeController.swift │ ├── MicroKaraokeController.swift │ ├── ModerationController.swift │ ├── PerformerController.swift │ ├── PersonalEventController.swift │ ├── PhonecallController.swift │ ├── PhotostreamController.swift │ ├── Structs │ │ ├── AdminControllerStructs.swift │ │ ├── ControllerStructs.swift │ │ ├── ModeratorControllerStructs.swift │ │ └── SocketStructs.swift │ ├── TestController.swift │ ├── TwitarrController.swift │ ├── UserController.swift │ └── UsersController.swift │ ├── Enumerations │ ├── AppFeatures.swift │ ├── CallInResult.swift │ ├── DinnerTeam.swift │ ├── EventNotificationSetting.swift │ ├── EventType.swift │ ├── FezType.swift │ ├── LikeType.swift │ ├── MailInbox.swift │ ├── ModeratorActionType.swift │ ├── NotificationType.swift │ ├── PrivilegedUser.swift │ ├── ReportType.swift │ ├── UserAccessLevel.swift │ └── UserRoleType.swift │ ├── Extensions │ ├── Fluent+Extensions.swift │ ├── Foundation+Extensions.swift │ ├── PostContentData+Extensions.swift │ ├── User+Extensions.swift │ └── Vapor+Extensions.swift │ ├── Helpers │ ├── CryptoHelper.swift │ ├── DisabledSectionMiddleware.swift │ ├── EventParser.swift │ ├── ICSHelper.swift │ ├── RedisWrapper.swift │ ├── Settings.swift │ ├── SwiftarrErrorMiddleware.swift │ ├── UserCache.swift │ ├── UserRoleMiddleware.swift │ ├── ValidatingJSONParser.swift │ └── WebSocketStorage.swift │ ├── Image │ ├── Format.swift │ ├── Geometry.swift │ └── Image.swift │ ├── Jobs │ ├── ConsistencyJobs.swift │ └── EventJobs.swift │ ├── Migrations │ ├── AdminUsers.swift │ ├── Categories.swift │ ├── ClientUsers.swift │ ├── Data Import │ │ ├── Boardgames.swift │ │ ├── EventForums.swift │ │ ├── Events.swift │ │ ├── KaraokeSongs.swift │ │ ├── RegistrationCodes.swift │ │ └── TimeZoneChanges.swift │ ├── Forums.swift │ ├── Schema Creation │ │ ├── PerformanceIndexCreation.swift │ │ ├── SchemaCreation.swift │ │ ├── SeamailSearchIndexCreation.swift │ │ └── SearchIndexCreation.swift │ └── Test Data │ │ ├── TestData.swift │ │ └── TestUsers.swift │ ├── Models │ ├── AlertWord.swift │ ├── Announcement.swift │ ├── Boardgame.swift │ ├── Category.swift │ ├── DailyTheme.swift │ ├── Event.swift │ ├── EventFeedback.swift │ ├── FezPost.swift │ ├── Forum.swift │ ├── ForumEdit.swift │ ├── ForumPost.swift │ ├── ForumPostEdit.swift │ ├── FriendlyFez.swift │ ├── FriendlyFezEdit.swift │ ├── Hunt.swift │ ├── KaraokePlayedSong.swift │ ├── KaraokeSong.swift │ ├── MKSnippet.swift │ ├── MKSong.swift │ ├── ModeratorAction.swift │ ├── MuteWord.swift │ ├── Performer.swift │ ├── ProfileEdit.swift │ ├── Puzzle.swift │ ├── RegistrationCode.swift │ ├── Report.swift │ ├── ScheduleLog.swift │ ├── StreamPhoto.swift │ ├── TimeZoneChange.swift │ ├── Token.swift │ ├── Twarrt.swift │ ├── TwarrtEdit.swift │ ├── User.swift │ ├── UserNote.swift │ └── UserRole.swift │ ├── Pivots │ ├── AlertWordPivot.swift │ ├── BoardgameFavorite.swift │ ├── EventFavorite.swift │ ├── EventPerformer.swift │ ├── FezParticipant.swift │ ├── ForumReaders.swift │ ├── KaraokeFavorite.swift │ ├── PostLikes.swift │ ├── PuzzleCallIn.swift │ ├── TwarrtLikes.swift │ └── UserFavorite.swift │ ├── Protocols │ ├── APICollection.swift │ ├── APIRouteCollection.swift │ ├── ContentFilterable.swift │ ├── FezProtocol.swift │ ├── ImageHandler.swift │ ├── Reportable.swift │ └── Searchable.swift │ ├── Resources │ ├── Assets │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── dayplanner.css │ │ │ ├── printroomposter.css │ │ │ └── swiftarr.css │ │ ├── img │ │ │ ├── 404_file_not_found_sign_by_zutheskunk.png │ │ │ ├── NoAvatarUser.png │ │ │ ├── Twitarr - header.png │ │ │ ├── ajax-loader.gif │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ ├── background.png │ │ │ ├── close-icon.png │ │ │ ├── emoji │ │ │ │ ├── large │ │ │ │ │ ├── buffet.png │ │ │ │ │ ├── die-ship.png │ │ │ │ │ ├── die.png │ │ │ │ │ ├── fez.png │ │ │ │ │ ├── hottub.png │ │ │ │ │ ├── joco.png │ │ │ │ │ ├── pirate.png │ │ │ │ │ ├── ship-front.png │ │ │ │ │ ├── ship.png │ │ │ │ │ ├── towel-monkey.png │ │ │ │ │ ├── tropical-drink.png │ │ │ │ │ └── zombie.png │ │ │ │ └── small │ │ │ │ │ ├── buffet.png │ │ │ │ │ ├── die-ship.png │ │ │ │ │ ├── die.png │ │ │ │ │ ├── fez.png │ │ │ │ │ ├── hottub.png │ │ │ │ │ ├── joco.png │ │ │ │ │ ├── pirate.png │ │ │ │ │ ├── ship-front.png │ │ │ │ │ ├── ship.png │ │ │ │ │ ├── towel-monkey.png │ │ │ │ │ ├── tropical-drink.png │ │ │ │ │ ├── wangwang.png │ │ │ │ │ └── zombie.png │ │ │ ├── event-now.png │ │ │ ├── event-soon.png │ │ │ ├── favicon.ico │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── header-waves.png │ │ │ ├── jellyfish.png │ │ │ ├── joco-coconut.png │ │ │ ├── joco-logo-4.png │ │ │ ├── map │ │ │ │ ├── deck1.png │ │ │ │ ├── deck10.png │ │ │ │ ├── deck11.png │ │ │ │ ├── deck12.png │ │ │ │ ├── deck2.png │ │ │ │ ├── deck3.png │ │ │ │ ├── deck4.png │ │ │ │ ├── deck5.png │ │ │ │ ├── deck6.png │ │ │ │ ├── deck7.png │ │ │ │ ├── deck8.png │ │ │ │ └── deck9.png │ │ │ ├── menuIcon.png │ │ │ ├── menuIconBold.png │ │ │ ├── moderation-guide-images │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ └── image5.png │ │ │ ├── play_overlay.png │ │ │ ├── searchIcon.png │ │ │ └── social_icons.svg │ │ ├── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── jquery-3.5.1.slim.min.js │ │ │ ├── swiftarr.js │ │ │ ├── swiftarrMessages.js │ │ │ └── swiftarrModeration.js │ │ └── public │ │ │ ├── .gitkeep │ │ │ ├── clients │ │ │ ├── README.md │ │ │ └── tricordarr.json │ │ │ ├── codeofconduct.json │ │ │ ├── codeofconduct.md │ │ │ ├── faq.html │ │ │ ├── faq.md │ │ │ └── twitarrhelptext.md │ └── Views │ │ ├── Events │ │ ├── event.html │ │ ├── events.html │ │ └── singleEvent.html │ │ ├── Feedback │ │ ├── adminReport.html │ │ ├── adminReports.html │ │ ├── adminReportsTable.html │ │ ├── adminRoot.html │ │ ├── event.html │ │ ├── eventSelector.html │ │ ├── feedbackForm.html │ │ ├── feedbackSubmitted.html │ │ ├── roomPosterForm.html │ │ └── roomPosterPrint.html │ │ ├── Fez │ │ ├── fezCreate.html │ │ ├── fezFAQ.html │ │ ├── fezFilter.html │ │ ├── fezFormer.html │ │ ├── fezJoined.html │ │ ├── fezListItem.html │ │ ├── fezManageMembers.html │ │ ├── fezNavbar.html │ │ ├── fezOwned.html │ │ ├── fezPost.html │ │ ├── fezRoot.html │ │ ├── seamailCreate.html │ │ ├── seamailThread.html │ │ ├── seamails.html │ │ └── singleFez.html │ │ ├── Forums │ │ ├── forum.html │ │ ├── forumCategories.html │ │ ├── forumCreate.html │ │ ├── forumEdit.html │ │ ├── forumPostEdit.html │ │ ├── forumPostsList.html │ │ ├── forums.html │ │ └── forumsList.html │ │ ├── GamesAndSongs │ │ ├── boardgameExpansions.html │ │ ├── boardgameGuide.html │ │ ├── boardgameItem.html │ │ ├── boardgameList.html │ │ ├── latestSongs.html │ │ ├── logSongPerformance.html │ │ └── matchingSongs.html │ │ ├── Hunts │ │ ├── hunt.html │ │ ├── list.html │ │ └── puzzle.html │ │ ├── Login │ │ ├── accountCreated.html │ │ ├── createAccount.html │ │ ├── createAltAccount.html │ │ ├── login.html │ │ ├── loginPane.html │ │ └── resetPassword.html │ │ ├── Performers │ │ ├── addOrganizer.html │ │ ├── addPerformer.html │ │ ├── adminRoot.html │ │ ├── bio.html │ │ ├── bulkLink.html │ │ ├── bulkLinkVerify.html │ │ └── list.html │ │ ├── Photostream │ │ └── photostream.html │ │ ├── PrivateEvent │ │ ├── dayPlanner.html │ │ ├── privateEventCreate.html │ │ ├── privateEventList.html │ │ └── subscribe.html │ │ ├── Tweets │ │ ├── tweetEdit.html │ │ ├── tweetListItem.html │ │ ├── tweetReply.html │ │ ├── tweetThread.html │ │ └── tweets.html │ │ ├── User │ │ ├── alertwords.html │ │ ├── directory.html │ │ ├── shutternauts.html │ │ ├── userBlocks.html │ │ ├── userFavorites.html │ │ ├── userProfile.html │ │ ├── userProfileEdit.html │ │ └── userUsernameEdit.html │ │ ├── admin │ │ ├── announcementEdit.html │ │ ├── announcements.html │ │ ├── assignRegCodeForm.html │ │ ├── boardgames.html │ │ ├── bulkUser.html │ │ ├── bulkUserVerify.html │ │ ├── dailyThemes.html │ │ ├── huntEdit.html │ │ ├── hunts.html │ │ ├── karaoke.html │ │ ├── regCodeAssigned.html │ │ ├── regCodeForUser.html │ │ ├── regcodes.html │ │ ├── root.html │ │ ├── scheduleLogView.html │ │ ├── scheduleUpdateComplete.html │ │ ├── scheduleUpload.html │ │ ├── scheduleVerify.html │ │ ├── serverRollup.html │ │ ├── serversettings.html │ │ ├── showModerators.html │ │ ├── showUserRoles.html │ │ ├── themeCreate.html │ │ └── timezonechanges.html │ │ ├── error.html │ │ ├── featureDisabled.html │ │ ├── home.html │ │ ├── imageOverlay.html │ │ ├── map.html │ │ ├── messagePostForm.html │ │ ├── moderation │ │ ├── fezPostView.html │ │ ├── fezView.html │ │ ├── forumPostView.html │ │ ├── forumView.html │ │ ├── guide.html │ │ ├── mkSnippetView.html │ │ ├── mkSongsView.html │ │ ├── moderatorActionLog.html │ │ ├── moderatorSeamail.html │ │ ├── personalEvent.html │ │ ├── profileView.html │ │ ├── reportListItem.html │ │ ├── reports.html │ │ ├── root.html │ │ ├── streamPhoto.html │ │ ├── twarrtView.html │ │ └── userView.html │ │ ├── paginator.html │ │ ├── reportCreate.html │ │ ├── showMarkdown.html │ │ ├── time.html │ │ └── trunk.html │ ├── Site │ ├── SiteAdminController.swift │ ├── SiteBoardgameController.swift │ ├── SiteChatController.swift │ ├── SiteController.swift │ ├── SiteEventFeedbackController.swift │ ├── SiteEventsController.swift │ ├── SiteFileController.swift │ ├── SiteForumController.swift │ ├── SiteHuntController.swift │ ├── SiteKaraokeController.swift │ ├── SiteLoginController.swift │ ├── SiteModController.swift │ ├── SitePerformerController.swift │ ├── SitePhotostreamController.swift │ ├── SitePrivateEventController.swift │ ├── SiteSeamailController.swift │ ├── SiteTwittarController.swift │ ├── SiteUserController.swift │ └── Utilities │ │ ├── CustomLeafTags.swift │ │ ├── NotificationsMiddleware.swift │ │ ├── SiteErrorMiddleware.swift │ │ ├── SiteRedisWrapper.swift │ │ └── SiteUserRoleMiddleware.swift │ ├── configure.swift │ ├── entrypoint.swift │ ├── routes.swift │ └── seeds │ ├── 2024 Schedule Export.xlsx │ ├── JoCoGamesCatalog.json │ ├── JoCoKaraokeSongCatalog.txt │ ├── Private Swiftarr Config │ ├── Docker-Template.env │ ├── Template.env │ └── redis.conf │ ├── TimeZoneNames.txt │ ├── registered-clients.txt │ ├── registration-codes.txt │ ├── schedule.ics │ ├── test-JoCoGamesCatalog.json │ ├── test-JoCoKaraokeSongCatalog.txt │ ├── test-image.gif │ ├── test-image.jpg │ ├── test-image.png │ ├── test-registered-clients.txt │ ├── test-registration-codes.txt │ ├── test-schedule.ics │ └── time-zone-changes.txt ├── Tests ├── .gitkeep ├── AppTests │ ├── Application+Testable.swift │ ├── BaseTest.swift │ ├── ClientControllerTests.swift │ └── SettingsTests.swift ├── LinuxMain.swift └── TestData │ ├── FullSchedule2019.ics │ ├── FullSchedule2020.ics │ ├── FullSchedule2022.ics │ ├── FullSchedule2023v1.ics │ ├── FullSchedule2023v2.ics │ ├── FullSchedule2024.ics │ ├── FullSchedule2025.ics │ └── test-hunt.json ├── docs ├── CNAME ├── Shadow Event Feedback Guide.pdf ├── Swiftarr │ ├── API Changelist.md │ ├── API Overview.md │ ├── Canonical Links.md │ ├── Configuration.md │ ├── Contributing.md │ ├── Database Migration.md │ ├── Development.md │ ├── Docker Installation.md │ ├── Documentation.md │ ├── Example.md │ ├── Linux Installation.md │ ├── MacOS Installation.md │ ├── Pitch.md │ ├── Privacy.md │ ├── Release Calendar.md │ ├── Roadmap.md │ ├── Sections │ │ ├── Operations.md │ │ └── Overview.md │ ├── Special Files.md │ └── Windows Installation.md ├── conf.py └── requirements.txt ├── locustfile.py ├── requirements.txt └── scripts ├── Prometheus ├── alertmanager.yml ├── alerts.yml ├── prometheus.yml └── readme.md ├── docker-compose-instance.yml ├── docker-compose-stack.yml ├── generatedocs.sh ├── health.sh ├── init-prereqs.sh ├── instance.sh ├── reset-databases.sh ├── run.sh └── stack.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.github/workflows/build_branch.yml -------------------------------------------------------------------------------- /.github/workflows/check_health.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.github/workflows/check_health.sh -------------------------------------------------------------------------------- /.github/workflows/prevent_file_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.github/workflows/prevent_file_changes.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/.swift-format -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 6.2.0 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Package.swift -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/README.md -------------------------------------------------------------------------------- /Sources/gd/module.modulemap: -------------------------------------------------------------------------------- 1 | module gd { 2 | header "swiftgd_gd.h" 3 | link "gd" 4 | export * 5 | } 6 | -------------------------------------------------------------------------------- /Sources/gd/swiftgd_gd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/gd/swiftgd_gd.h -------------------------------------------------------------------------------- /Sources/gdOverrides/gd_jpeg_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/gdOverrides/gd_jpeg_custom.c -------------------------------------------------------------------------------- /Sources/gdOverrides/gd_jpeg_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/gdOverrides/gd_jpeg_custom.h -------------------------------------------------------------------------------- /Sources/jpeg/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/jpeg/module.modulemap -------------------------------------------------------------------------------- /Sources/jpeg/swift_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/jpeg/swift_jpeg.h -------------------------------------------------------------------------------- /Sources/swiftarr/Commands/PruneEventForums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Commands/PruneEventForums.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Commands/ScheduleGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Commands/ScheduleGenerator.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/AdminController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/AdminController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/AlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/AlertController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/AuthController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/AuthController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/BoardgameController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/BoardgameController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/ClientController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/ClientController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/EventController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/EventController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/FeedbackController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/FeedbackController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/FezController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/FezController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/ForumController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/ForumController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/HuntController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/HuntController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/ImageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/ImageController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/KaraokeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/KaraokeController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/MicroKaraokeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/MicroKaraokeController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/ModerationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/ModerationController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/PerformerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/PerformerController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/PersonalEventController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/PersonalEventController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/PhonecallController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/PhonecallController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/PhotostreamController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/PhotostreamController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/Structs/AdminControllerStructs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/Structs/AdminControllerStructs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/Structs/ControllerStructs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/Structs/ControllerStructs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/Structs/ModeratorControllerStructs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/Structs/ModeratorControllerStructs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/Structs/SocketStructs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/Structs/SocketStructs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/TestController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/TestController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/TwitarrController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/TwitarrController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/UserController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/UserController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Controllers/UsersController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Controllers/UsersController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/AppFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/AppFeatures.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/CallInResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/CallInResult.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/DinnerTeam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/DinnerTeam.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/EventNotificationSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/EventNotificationSetting.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/EventType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/EventType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/FezType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/FezType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/LikeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/LikeType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/MailInbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/MailInbox.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/ModeratorActionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/ModeratorActionType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/NotificationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/NotificationType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/PrivilegedUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/PrivilegedUser.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/ReportType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/ReportType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/UserAccessLevel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/UserAccessLevel.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Enumerations/UserRoleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Enumerations/UserRoleType.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Extensions/Fluent+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Extensions/Fluent+Extensions.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Extensions/Foundation+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Extensions/Foundation+Extensions.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Extensions/PostContentData+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Extensions/PostContentData+Extensions.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Extensions/User+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Extensions/User+Extensions.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Extensions/Vapor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Extensions/Vapor+Extensions.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/CryptoHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/CryptoHelper.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/DisabledSectionMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/DisabledSectionMiddleware.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/EventParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/EventParser.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/ICSHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/ICSHelper.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/RedisWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/RedisWrapper.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/Settings.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/SwiftarrErrorMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/SwiftarrErrorMiddleware.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/UserCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/UserCache.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/UserRoleMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/UserRoleMiddleware.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/ValidatingJSONParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/ValidatingJSONParser.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Helpers/WebSocketStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Helpers/WebSocketStorage.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Image/Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Image/Format.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Image/Geometry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Image/Geometry.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Image/Image.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Jobs/ConsistencyJobs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Jobs/ConsistencyJobs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Jobs/EventJobs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Jobs/EventJobs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/AdminUsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/AdminUsers.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Categories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Categories.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/ClientUsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/ClientUsers.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Data Import/Boardgames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Data Import/Boardgames.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Data Import/EventForums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Data Import/EventForums.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Data Import/Events.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Data Import/Events.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Data Import/KaraokeSongs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Data Import/KaraokeSongs.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Data Import/RegistrationCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Data Import/RegistrationCodes.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Data Import/TimeZoneChanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Data Import/TimeZoneChanges.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Forums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Forums.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Schema Creation/PerformanceIndexCreation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Schema Creation/PerformanceIndexCreation.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Schema Creation/SchemaCreation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Schema Creation/SchemaCreation.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Schema Creation/SeamailSearchIndexCreation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Schema Creation/SeamailSearchIndexCreation.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Schema Creation/SearchIndexCreation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Schema Creation/SearchIndexCreation.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Test Data/TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Test Data/TestData.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Migrations/Test Data/TestUsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Migrations/Test Data/TestUsers.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/AlertWord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/AlertWord.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Announcement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Announcement.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Boardgame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Boardgame.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Category.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/DailyTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/DailyTheme.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Event.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/EventFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/EventFeedback.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/FezPost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/FezPost.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Forum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Forum.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/ForumEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/ForumEdit.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/ForumPost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/ForumPost.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/ForumPostEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/ForumPostEdit.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/FriendlyFez.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/FriendlyFez.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/FriendlyFezEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/FriendlyFezEdit.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Hunt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Hunt.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/KaraokePlayedSong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/KaraokePlayedSong.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/KaraokeSong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/KaraokeSong.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/MKSnippet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/MKSnippet.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/MKSong.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/MKSong.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/ModeratorAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/ModeratorAction.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/MuteWord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/MuteWord.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Performer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Performer.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/ProfileEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/ProfileEdit.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Puzzle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Puzzle.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/RegistrationCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/RegistrationCode.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Report.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Report.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/ScheduleLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/ScheduleLog.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/StreamPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/StreamPhoto.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/TimeZoneChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/TimeZoneChange.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Token.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/Twarrt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/Twarrt.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/TwarrtEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/TwarrtEdit.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/User.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/UserNote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/UserNote.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Models/UserRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Models/UserRole.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/AlertWordPivot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/AlertWordPivot.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/BoardgameFavorite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/BoardgameFavorite.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/EventFavorite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/EventFavorite.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/EventPerformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/EventPerformer.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/FezParticipant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/FezParticipant.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/ForumReaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/ForumReaders.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/KaraokeFavorite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/KaraokeFavorite.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/PostLikes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/PostLikes.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/PuzzleCallIn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/PuzzleCallIn.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/TwarrtLikes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/TwarrtLikes.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Pivots/UserFavorite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Pivots/UserFavorite.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/APICollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/APICollection.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/APIRouteCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/APIRouteCollection.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/ContentFilterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/ContentFilterable.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/FezProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/FezProtocol.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/ImageHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/ImageHandler.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/Reportable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/Reportable.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Protocols/Searchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Protocols/Searchable.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/bootstrap.css -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/dayplanner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/dayplanner.css -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/printroomposter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/printroomposter.css -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/css/swiftarr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/css/swiftarr.css -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/404_file_not_found_sign_by_zutheskunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/404_file_not_found_sign_by_zutheskunk.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/NoAvatarUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/NoAvatarUser.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/Twitarr - header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/Twitarr - header.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/ajax-loader.gif -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/background.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/close-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/close-icon.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/buffet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/buffet.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/die-ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/die-ship.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/die.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/fez.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/hottub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/hottub.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/joco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/joco.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/pirate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/pirate.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/ship-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/ship-front.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/ship.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/towel-monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/towel-monkey.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/tropical-drink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/tropical-drink.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/large/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/large/zombie.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/buffet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/buffet.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/die-ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/die-ship.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/die.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/fez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/fez.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/hottub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/hottub.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/joco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/joco.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/pirate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/pirate.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/ship-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/ship-front.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/ship.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/towel-monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/towel-monkey.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/tropical-drink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/tropical-drink.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/wangwang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/wangwang.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/emoji/small/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/emoji/small/zombie.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/event-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/event-now.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/event-soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/event-soon.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/favicon.ico -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/header-waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/header-waves.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/jellyfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/jellyfish.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/joco-coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/joco-coconut.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/joco-logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/joco-logo-4.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck1.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck10.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck11.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck12.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck2.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck3.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck4.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck5.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck6.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck7.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck8.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/map/deck9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/map/deck9.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/menuIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/menuIcon.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/menuIconBold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/menuIconBold.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image1.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image2.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image3.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image4.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/moderation-guide-images/image5.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/play_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/play_overlay.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/searchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/searchIcon.png -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/img/social_icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/img/social_icons.svg -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/jquery-3.5.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/jquery-3.5.1.slim.min.js -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/swiftarr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/swiftarr.js -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/swiftarrMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/swiftarrMessages.js -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/js/swiftarrModeration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/js/swiftarrModeration.js -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/clients/README.md -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/clients/tricordarr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/clients/tricordarr.json -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/codeofconduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/codeofconduct.json -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/codeofconduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/codeofconduct.md -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/faq.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/faq.md -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Assets/public/twitarrhelptext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Assets/public/twitarrhelptext.md -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Events/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Events/event.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Events/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Events/events.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Events/singleEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Events/singleEvent.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/adminReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/adminReport.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/adminReports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/adminReports.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/adminReportsTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/adminReportsTable.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/adminRoot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/adminRoot.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/event.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/eventSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/eventSelector.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/feedbackForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/feedbackForm.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/feedbackSubmitted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/feedbackSubmitted.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/roomPosterForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/roomPosterForm.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Feedback/roomPosterPrint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Feedback/roomPosterPrint.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezCreate.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezFAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezFAQ.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezFilter.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezFormer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezFormer.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezJoined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezJoined.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezListItem.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezManageMembers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezManageMembers.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezNavbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezNavbar.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezOwned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezOwned.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezPost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezPost.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/fezRoot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/fezRoot.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/seamailCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/seamailCreate.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/seamailThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/seamailThread.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/seamails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/seamails.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Fez/singleFez.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Fez/singleFez.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forum.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forumCategories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forumCategories.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forumCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forumCreate.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forumEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forumEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forumPostEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forumPostEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forumPostsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forumPostsList.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forums.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Forums/forumsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Forums/forumsList.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameExpansions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameExpansions.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameGuide.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameItem.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/boardgameList.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/latestSongs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/latestSongs.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/logSongPerformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/logSongPerformance.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/GamesAndSongs/matchingSongs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/GamesAndSongs/matchingSongs.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Hunts/hunt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Hunts/hunt.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Hunts/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Hunts/list.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Hunts/puzzle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Hunts/puzzle.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Login/accountCreated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Login/accountCreated.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Login/createAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Login/createAccount.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Login/createAltAccount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Login/createAltAccount.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Login/login.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Login/loginPane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Login/loginPane.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Login/resetPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Login/resetPassword.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/addOrganizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/addOrganizer.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/addPerformer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/addPerformer.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/adminRoot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/adminRoot.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/bio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/bio.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/bulkLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/bulkLink.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/bulkLinkVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/bulkLinkVerify.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Performers/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Performers/list.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Photostream/photostream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Photostream/photostream.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/PrivateEvent/dayPlanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/PrivateEvent/dayPlanner.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/PrivateEvent/privateEventCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/PrivateEvent/privateEventCreate.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/PrivateEvent/privateEventList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/PrivateEvent/privateEventList.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/PrivateEvent/subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/PrivateEvent/subscribe.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Tweets/tweetEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Tweets/tweetEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Tweets/tweetListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Tweets/tweetListItem.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Tweets/tweetReply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Tweets/tweetReply.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Tweets/tweetThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Tweets/tweetThread.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/Tweets/tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/Tweets/tweets.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/alertwords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/alertwords.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/directory.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/shutternauts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/shutternauts.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/userBlocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/userBlocks.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/userFavorites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/userFavorites.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/userProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/userProfile.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/userProfileEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/userProfileEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/User/userUsernameEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/User/userUsernameEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/announcementEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/announcementEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/announcements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/announcements.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/assignRegCodeForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/assignRegCodeForm.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/boardgames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/boardgames.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/bulkUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/bulkUser.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/bulkUserVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/bulkUserVerify.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/dailyThemes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/dailyThemes.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/huntEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/huntEdit.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/hunts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/hunts.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/karaoke.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/karaoke.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/regCodeAssigned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/regCodeAssigned.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/regCodeForUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/regCodeForUser.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/regcodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/regcodes.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/root.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/scheduleLogView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/scheduleLogView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/scheduleUpdateComplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/scheduleUpdateComplete.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/scheduleUpload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/scheduleUpload.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/scheduleVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/scheduleVerify.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/serverRollup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/serverRollup.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/serversettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/serversettings.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/showModerators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/showModerators.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/showUserRoles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/showUserRoles.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/themeCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/themeCreate.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/admin/timezonechanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/admin/timezonechanges.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/error.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/featureDisabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/featureDisabled.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/home.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/imageOverlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/imageOverlay.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/map.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/messagePostForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/messagePostForm.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/fezPostView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/fezPostView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/fezView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/fezView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/forumPostView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/forumPostView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/forumView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/forumView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/guide.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/mkSnippetView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/mkSnippetView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/mkSongsView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/mkSongsView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/moderatorActionLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/moderatorActionLog.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/moderatorSeamail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/moderatorSeamail.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/personalEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/personalEvent.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/profileView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/profileView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/reportListItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/reportListItem.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/reports.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/root.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/streamPhoto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/streamPhoto.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/twarrtView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/twarrtView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/moderation/userView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/moderation/userView.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/paginator.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/reportCreate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/reportCreate.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/showMarkdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/showMarkdown.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/time.html -------------------------------------------------------------------------------- /Sources/swiftarr/Resources/Views/trunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Resources/Views/trunk.html -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteAdminController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteAdminController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteBoardgameController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteBoardgameController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteChatController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteChatController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteEventFeedbackController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteEventFeedbackController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteEventsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteEventsController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteFileController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteFileController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteForumController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteForumController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteHuntController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteHuntController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteKaraokeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteKaraokeController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteLoginController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteLoginController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteModController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteModController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SitePerformerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SitePerformerController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SitePhotostreamController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SitePhotostreamController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SitePrivateEventController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SitePrivateEventController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteSeamailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteSeamailController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteTwittarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteTwittarController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/SiteUserController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/SiteUserController.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/Utilities/CustomLeafTags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/Utilities/CustomLeafTags.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/Utilities/NotificationsMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/Utilities/NotificationsMiddleware.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/Utilities/SiteErrorMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/Utilities/SiteErrorMiddleware.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/Utilities/SiteRedisWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/Utilities/SiteRedisWrapper.swift -------------------------------------------------------------------------------- /Sources/swiftarr/Site/Utilities/SiteUserRoleMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/Site/Utilities/SiteUserRoleMiddleware.swift -------------------------------------------------------------------------------- /Sources/swiftarr/configure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/configure.swift -------------------------------------------------------------------------------- /Sources/swiftarr/entrypoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/entrypoint.swift -------------------------------------------------------------------------------- /Sources/swiftarr/routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/routes.swift -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/2024 Schedule Export.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/2024 Schedule Export.xlsx -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/JoCoGamesCatalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/JoCoGamesCatalog.json -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/JoCoKaraokeSongCatalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/JoCoKaraokeSongCatalog.txt -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/Private Swiftarr Config/Docker-Template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/Private Swiftarr Config/Docker-Template.env -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/Private Swiftarr Config/Template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/Private Swiftarr Config/Template.env -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/Private Swiftarr Config/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/Private Swiftarr Config/redis.conf -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/TimeZoneNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/TimeZoneNames.txt -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/registered-clients.txt: -------------------------------------------------------------------------------- 1 | client:password:recovery key -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/registration-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/registration-codes.txt -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/schedule.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/schedule.ics -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-JoCoGamesCatalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-JoCoGamesCatalog.json -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-JoCoKaraokeSongCatalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-JoCoKaraokeSongCatalog.txt -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-image.gif -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-image.jpg -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-image.png -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-registered-clients.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-registered-clients.txt -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-registration-codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-registration-codes.txt -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/test-schedule.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/test-schedule.ics -------------------------------------------------------------------------------- /Sources/swiftarr/seeds/time-zone-changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Sources/swiftarr/seeds/time-zone-changes.txt -------------------------------------------------------------------------------- /Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/AppTests/Application+Testable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/AppTests/Application+Testable.swift -------------------------------------------------------------------------------- /Tests/AppTests/BaseTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/AppTests/BaseTest.swift -------------------------------------------------------------------------------- /Tests/AppTests/ClientControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/AppTests/ClientControllerTests.swift -------------------------------------------------------------------------------- /Tests/AppTests/SettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/AppTests/SettingsTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2019.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2019.ics -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2020.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2020.ics -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2022.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2022.ics -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2023v1.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2023v1.ics -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2023v2.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2023v2.ics -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2024.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2024.ics -------------------------------------------------------------------------------- /Tests/TestData/FullSchedule2025.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/FullSchedule2025.ics -------------------------------------------------------------------------------- /Tests/TestData/test-hunt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/Tests/TestData/test-hunt.json -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.twitarr.com -------------------------------------------------------------------------------- /docs/Shadow Event Feedback Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Shadow Event Feedback Guide.pdf -------------------------------------------------------------------------------- /docs/Swiftarr/API Changelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/API Changelist.md -------------------------------------------------------------------------------- /docs/Swiftarr/API Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/API Overview.md -------------------------------------------------------------------------------- /docs/Swiftarr/Canonical Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Canonical Links.md -------------------------------------------------------------------------------- /docs/Swiftarr/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Configuration.md -------------------------------------------------------------------------------- /docs/Swiftarr/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Contributing.md -------------------------------------------------------------------------------- /docs/Swiftarr/Database Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Database Migration.md -------------------------------------------------------------------------------- /docs/Swiftarr/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Development.md -------------------------------------------------------------------------------- /docs/Swiftarr/Docker Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Docker Installation.md -------------------------------------------------------------------------------- /docs/Swiftarr/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Documentation.md -------------------------------------------------------------------------------- /docs/Swiftarr/Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Example.md -------------------------------------------------------------------------------- /docs/Swiftarr/Linux Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Linux Installation.md -------------------------------------------------------------------------------- /docs/Swiftarr/MacOS Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/MacOS Installation.md -------------------------------------------------------------------------------- /docs/Swiftarr/Pitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Pitch.md -------------------------------------------------------------------------------- /docs/Swiftarr/Privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Privacy.md -------------------------------------------------------------------------------- /docs/Swiftarr/Release Calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Release Calendar.md -------------------------------------------------------------------------------- /docs/Swiftarr/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Roadmap.md -------------------------------------------------------------------------------- /docs/Swiftarr/Sections/Operations.md: -------------------------------------------------------------------------------- 1 | Notes and instructions for deploying Swiftarr in the wild. -------------------------------------------------------------------------------- /docs/Swiftarr/Sections/Overview.md: -------------------------------------------------------------------------------- 1 | High level information on the project and it's goals. -------------------------------------------------------------------------------- /docs/Swiftarr/Special Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Special Files.md -------------------------------------------------------------------------------- /docs/Swiftarr/Windows Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/Swiftarr/Windows Installation.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | myst_parser 2 | -------------------------------------------------------------------------------- /locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/locustfile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | websocket-client 2 | locust 3 | -------------------------------------------------------------------------------- /scripts/Prometheus/alertmanager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/Prometheus/alertmanager.yml -------------------------------------------------------------------------------- /scripts/Prometheus/alerts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/Prometheus/alerts.yml -------------------------------------------------------------------------------- /scripts/Prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/Prometheus/prometheus.yml -------------------------------------------------------------------------------- /scripts/Prometheus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/Prometheus/readme.md -------------------------------------------------------------------------------- /scripts/docker-compose-instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/docker-compose-instance.yml -------------------------------------------------------------------------------- /scripts/docker-compose-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/docker-compose-stack.yml -------------------------------------------------------------------------------- /scripts/generatedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/generatedocs.sh -------------------------------------------------------------------------------- /scripts/health.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | curl -f "http://localhost:${SWIFTARR_PORT}/api/v3/client/health" || exit 1 -------------------------------------------------------------------------------- /scripts/init-prereqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/init-prereqs.sh -------------------------------------------------------------------------------- /scripts/instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/instance.sh -------------------------------------------------------------------------------- /scripts/reset-databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/reset-databases.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jocosocial/swiftarr/HEAD/scripts/stack.sh --------------------------------------------------------------------------------