├── .cursor ├── mcp.json └── rules │ └── laravel-boost.mdc ├── .env.example ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .styleci.yml ├── LICENSE ├── app ├── Console │ └── Commands │ │ ├── CalculateUserLevels.php │ │ ├── CleanRounds.php │ │ ├── ForceClearRounds.php │ │ ├── GenerateSitemap.php │ │ ├── MergeScores.php │ │ ├── ResetRounds.php │ │ ├── StorageMigrate.php │ │ └── WeeklyTopUsers.php ├── Events │ ├── MessageDeleted.php │ ├── MessageReactionUpdated.php │ ├── MessageReported.php │ ├── NewMessage.php │ ├── NewScore.php │ ├── RoundFinished.php │ ├── RoundStarted.php │ ├── TrackEnded.php │ ├── TrackPaused.php │ ├── TrackPlayed.php │ ├── TrackResumed.php │ ├── TrackVoted.php │ ├── UserHasFoundAllTheAnswers.php │ └── UserLevelUpdated.php ├── Exports │ └── PlaylistExport.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AdminController.php │ │ │ ├── AnswerTypeController.php │ │ │ ├── CategoryController.php │ │ │ ├── DashboardController.php │ │ │ ├── FAQController.php │ │ │ ├── PageController.php │ │ │ ├── PlaylistController.php │ │ │ ├── RoomController.php │ │ │ ├── StorageMigrationController.php │ │ │ ├── TeamController.php │ │ │ └── UserController.php │ │ ├── Api │ │ │ ├── MessageReactionController.php │ │ │ └── UserController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── ContactController.php │ │ ├── Controller.php │ │ ├── FAQController.php │ │ ├── HomeController.php │ │ ├── LevelController.php │ │ ├── LocalTrackController.php │ │ ├── Moderation │ │ │ ├── BannedUserController.php │ │ │ ├── DashboardController.php │ │ │ ├── LocalTrackController.php │ │ │ ├── ModeratorController.php │ │ │ ├── TrashedMessageController.php │ │ │ └── UserManagementController.php │ │ ├── ModerationController.php │ │ ├── PageController.php │ │ ├── PlaylistController.php │ │ ├── PlaylistModeratorController.php │ │ ├── ProfileController.php │ │ ├── RankingController.php │ │ ├── RoomBookmarkController.php │ │ ├── RoomController.php │ │ ├── RoomMessageController.php │ │ ├── RoomModeratorController.php │ │ ├── RoomPlaylistController.php │ │ ├── RoundController.php │ │ ├── SitemapController.php │ │ ├── SocialController.php │ │ ├── TeamController.php │ │ ├── TeamRequestController.php │ │ ├── TrackAnswerController.php │ │ ├── TrackController.php │ │ ├── UserBanController.php │ │ ├── UserController.php │ │ └── VoteController.php │ ├── Helpers.php │ ├── Middleware │ │ ├── HandleInertiaRequests.php │ │ ├── SetLocale.php │ │ ├── UserIsAdministrator.php │ │ └── UserIsPublicModerator.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── LocalTrackRequest.php │ │ └── Moderation │ │ │ └── BanUserRequest.php │ └── Traits │ │ ├── HasPicture.php │ │ └── Sluggable.php ├── Jobs │ ├── CleanEmptyPlaylists.php │ ├── CleanOldMessages.php │ ├── CleanRooms.php │ ├── MigrateFile.php │ ├── ProcessAddScoreToTotalScore.php │ ├── ProcessCleanRounds.php │ ├── ProcessDeletedTrack.php │ ├── ProcessImportTrack.php │ ├── ProcessResetUnfinishedRounds.php │ ├── ProcessRoundFinished.php │ ├── ProcessScoreCreation.php │ ├── ProcessTrackEnded.php │ ├── ProcessTrackPlayed.php │ ├── ProcessUserCreated.php │ ├── SendDiscordNotification.php │ ├── StartRound.php │ └── UpdateUserLevel.php ├── Models │ ├── AnswerType.php │ ├── Bookmark.php │ ├── Category.php │ ├── FAQ.php │ ├── LocalTrack.php │ ├── Message.php │ ├── MessageReaction.php │ ├── Page.php │ ├── Playlist.php │ ├── Room.php │ ├── Round.php │ ├── Score.php │ ├── Team.php │ ├── TeamRequest.php │ ├── TotalScore.php │ ├── Track.php │ ├── TrackAnswer.php │ ├── User.php │ ├── UserLevel.php │ └── Vote.php ├── Notifications │ ├── ContactMessage.php │ ├── NewRoomAlert.php │ ├── NewSuggestion.php │ ├── NewTeamRequest.php │ ├── TeamRequestApproved.php │ ├── TeamRequestRejected.php │ ├── TrackDeleted.php │ ├── UserBanned.php │ └── Welcome.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthorizationServiceProvider.php │ ├── HorizonServiceProvider.php │ └── MailServiceProvider.php ├── Rules │ ├── AudioDuration.php │ └── Reserved.php └── Services │ ├── BrevoService.php │ ├── LevelCalculator.php │ ├── MusicProviders │ ├── AppleMusicService.php │ ├── AudiusService.php │ ├── BlinestLikesService.php │ ├── DeezerService.php │ ├── Exceptions │ │ └── ProviderException.php │ ├── LocalTrackService.php │ ├── SpotifyService.php │ ├── YouTubeMusicService.php │ └── YoutubeWithoutApiService.php │ └── MusicProvidersService.php ├── artisan ├── boost.json ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── .gitkeep ├── app.php ├── ban.php ├── broadcasting.php ├── database.php ├── filesystems.php ├── horizon.php ├── inertia.php ├── logging.php ├── mail.php ├── queue.php ├── reverb.php ├── sanctum.php ├── services.php └── sitemap.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ ├── ContactFactory.php │ ├── RoomFactory.php │ ├── TeamFactory.php │ └── UserFactory.php ├── migrations │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2020_01_01_000001_create_password_resets_table.php │ ├── 2020_01_01_000002_create_failed_jobs_table.php │ ├── 2020_01_01_000004_create_users_table.php │ ├── 2021_12_06_152530_create_categories_table.php │ ├── 2021_12_06_152548_create_rooms_table.php │ ├── 2021_12_06_152558_create_playlists_table.php │ ├── 2021_12_06_155416_create_teams_table.php │ ├── 2021_12_06_155443_create_tracks_table.php │ ├── 2021_12_06_155831_create_track_answers_table.php │ ├── 2022_06_21_123505_create_playlist_room_table.php │ ├── 2022_06_23_100844_create_rounds_table.php │ ├── 2022_06_26_153704_create_scores_table.php │ ├── 2022_06_26_153801_create_answer_types_table.php │ ├── 2022_06_27_170346_create_moderables_table.php │ ├── 2022_06_27_174224_create_votes_table.php │ ├── 2022_07_03_183503_create_messages_table.php │ ├── 2022_07_07_102503_create_team_requests_table.php │ ├── 2022_07_07_104726_create_notifications_table.php │ ├── 2022_10_08_111600_create_pages_table.php │ ├── 2022_10_27_125804_add_slug_to_rooms_table.php │ ├── 2022_11_22_103405_create_total_scores_table.php │ ├── 2022_11_22_165118_add_autostart_to_rooms_table.php │ ├── 2023_01_26_110947_create_faqs_table.php │ ├── 2023_02_13_130213_update_users_table_for_bans.php │ ├── 2023_03_12_182137_create_bookmarks_table.php │ ├── 2023_04_02_114216_update_scores_table.php │ ├── 2023_06_07_000001_create_pulse_tables.php │ ├── 2023_12_21_101841_add_featured_and_round_count_to_rooms_table.php │ ├── 2024_06_01_000000_rename_password_resets_table.php │ ├── 2024_06_03_171047_add_index_to_rooms_table.php │ ├── 2024_06_05_222826_index_is_featured_to_rooms_table.php │ ├── 2024_10_05_191520_add_user_count_to_rooms_table.php │ ├── 2024_12_09_102225_change_preview_field_to_tracks_table.php │ ├── 2025_05_04_130409_create_local_tracks_table.php │ ├── 2025_07_02_170811_create_message_reactions_table.php │ ├── 2025_11_28_154242_add_current_track_started_at_to_rounds_table.php │ ├── 2025_11_30_142656_create_user_levels_table.php │ ├── 2025_11_30_143958_add_motivational_metrics_to_user_levels_table.php │ ├── create_bans_table.php │ └── metas_field_to_bans_table.php └── seeders │ ├── AnswerTypesSeeder.php │ ├── CategoriesSeeder.php │ ├── DatabaseSeeder.php │ └── RoomSlugsSeeder.php ├── docker-compose.yml ├── herd.yml ├── lang ├── en.json ├── en │ ├── auth.php │ ├── bad-words.php │ ├── messages.php │ ├── pagination.php │ ├── passwords.php │ ├── validation-attributes.php │ └── validation.php ├── fr.json └── fr │ ├── auth.php │ ├── bad-words.php │ ├── messages.php │ ├── pagination.php │ ├── passwords.php │ ├── validation-attributes.php │ ├── validation-inline.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── ads.txt ├── build │ └── manifest.json ├── favicon.svg ├── images │ └── statics │ │ ├── logo_blinest.png │ │ └── screenshot.png ├── index.php ├── robots.txt ├── vendor │ └── horizon │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── img │ │ ├── favicon.png │ │ ├── horizon.svg │ │ └── sprite.svg │ │ └── mix-manifest.json └── web.config ├── readme.md ├── resources ├── css │ ├── app.css │ ├── buttons.css │ ├── custom.css │ ├── fonts.css │ ├── form.css │ └── transitions.css ├── js │ ├── Components │ │ ├── AdminMenu.vue │ │ ├── Adsense.vue │ │ ├── Badge.vue │ │ ├── Card.vue │ │ ├── Chat │ │ │ ├── AlertModeratorsModal.vue │ │ │ ├── Chat.vue │ │ │ ├── Message.vue │ │ │ ├── Moderation.vue │ │ │ └── emojis.js │ │ ├── CheckboxInput.vue │ │ ├── Clip.vue │ │ ├── DarkmodeSwitcher.vue │ │ ├── DialogModal.vue │ │ ├── DonationBanner.vue │ │ ├── Dropdown.vue │ │ ├── FileInput.vue │ │ ├── FlashMessages.vue │ │ ├── Footer.vue │ │ ├── Icon.vue │ │ ├── LanguageSwitcher.vue │ │ ├── LevelBadge.vue │ │ ├── LevelDisplay.vue │ │ ├── LoadingButton.vue │ │ ├── Logo.vue │ │ ├── MainMenu.vue │ │ ├── MiniPlayer.vue │ │ ├── Modal.vue │ │ ├── Moderation │ │ │ └── BanForm.vue │ │ ├── Navbar.vue │ │ ├── Notifications │ │ │ ├── NewRoomAlert.vue │ │ │ ├── NewSuggestion.vue │ │ │ ├── NewTeamRequest.vue │ │ │ ├── Notifications.vue │ │ │ ├── TeamRequestApproved.vue │ │ │ ├── TeamRequestRejected.vue │ │ │ └── TrackDeleted.vue │ │ ├── Pagination.vue │ │ ├── PlayingIcon.vue │ │ ├── Playlists │ │ │ ├── ImportPlaylist.vue │ │ │ ├── ModeratorsManager.vue │ │ │ ├── RoomsList.vue │ │ │ ├── TrackAnswerForm.vue │ │ │ ├── TracksManager.vue │ │ │ └── UploadTrack.vue │ │ ├── Rooms │ │ │ ├── ModeratorsManager.vue │ │ │ └── PlaylistsManager.vue │ │ ├── SearchFilter.vue │ │ ├── SearchRooms.vue │ │ ├── SelectInput.vue │ │ ├── ShareModal.vue │ │ ├── Snow.vue │ │ ├── SocialIcon.vue │ │ ├── Sortable.vue │ │ ├── Spinner.vue │ │ ├── StructuredData.vue │ │ ├── TextEditor.vue │ │ ├── TextInput.vue │ │ ├── TextareaInput.vue │ │ ├── Tip.vue │ │ ├── Tooltip.vue │ │ ├── TrashedMessage.vue │ │ ├── UserDropdown.vue │ │ ├── UserGestureModal.vue │ │ └── Volume.vue │ ├── Layouts │ │ ├── AdminLayout.vue │ │ ├── AppLayout.vue │ │ └── RoomLayout.vue │ ├── Pages │ │ ├── Admin │ │ │ ├── AnswerTypes │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Categories │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Dashboard.vue │ │ │ ├── FAQ │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Pages │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Playlists │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Rooms │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ ├── Teams │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ │ └── Users │ │ │ │ ├── Create.vue │ │ │ │ ├── Edit.vue │ │ │ │ └── Index.vue │ │ ├── Auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── LoginForm.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ └── Socialite.vue │ │ ├── Contact │ │ │ ├── Index.vue │ │ │ └── Sent.vue │ │ ├── FAQ │ │ │ ├── Index.vue │ │ │ └── partials │ │ │ │ └── FAQ.vue │ │ ├── Home │ │ │ ├── Index.vue │ │ │ └── partials │ │ │ │ ├── FeaturedRoom.vue │ │ │ │ ├── Room.vue │ │ │ │ ├── Rooms.vue │ │ │ │ └── TopPlayers.vue │ │ ├── Level │ │ │ └── Index.vue │ │ ├── Me │ │ │ └── Show.vue │ │ ├── Moderation │ │ │ ├── BannedUsers.vue │ │ │ ├── Dashboard.vue │ │ │ ├── Layout.vue │ │ │ ├── LocalTracks.vue │ │ │ ├── Moderators.vue │ │ │ ├── TrashedMessages.vue │ │ │ ├── UsersManagement.vue │ │ │ └── partials │ │ │ │ ├── BannedUsers.vue │ │ │ │ └── UsersManagement.vue │ │ ├── Pages │ │ │ ├── Banned.vue │ │ │ └── Show.vue │ │ ├── Playlists │ │ │ ├── Create.vue │ │ │ ├── Edit.vue │ │ │ └── Index.vue │ │ ├── Profiles │ │ │ ├── Show.vue │ │ │ └── partials │ │ │ │ ├── BookmarksTab.vue │ │ │ │ ├── LikesTab.vue │ │ │ │ └── ScoresTab.vue │ │ ├── Rankings │ │ │ ├── Index.vue │ │ │ ├── Level.vue │ │ │ ├── Score.vue │ │ │ ├── Teams.vue │ │ │ ├── Week.vue │ │ │ └── partials │ │ │ │ ├── RankingList.vue │ │ │ │ ├── RankingTabs.vue │ │ │ │ └── UserPosition.vue │ │ ├── Rooms │ │ │ ├── Create.vue │ │ │ ├── Edit.vue │ │ │ ├── Index.vue │ │ │ ├── Password.vue │ │ │ ├── Show.vue │ │ │ └── partials │ │ │ │ ├── Answers.vue │ │ │ │ ├── Bookmark.vue │ │ │ │ ├── Controls.vue │ │ │ │ ├── EditOptionsForm.vue │ │ │ │ ├── FinishedRoundModal.vue │ │ │ │ ├── Player.vue │ │ │ │ ├── Podium.vue │ │ │ │ ├── PodiumModal.vue │ │ │ │ ├── Ranking.vue │ │ │ │ ├── RoomActions.vue │ │ │ │ ├── SendSuggestionModal.vue │ │ │ │ └── UserInput.vue │ │ └── Teams │ │ │ ├── Create.vue │ │ │ ├── Index.vue │ │ │ └── Show.vue │ ├── app.js │ ├── bootstrap.js │ ├── echo.js │ ├── ssr.js │ └── translation.js └── views │ ├── app.blade.php │ ├── errors │ └── 503.blade.php │ └── sitemap.blade.php ├── routes ├── admin.php ├── api.php ├── auth.php ├── channels.php ├── console.php ├── guests.php ├── rooms.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.cursor/rules/laravel-boost.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.cursor/rules/laravel-boost.mdc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.prettierrc -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Console/Commands/CalculateUserLevels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/CalculateUserLevels.php -------------------------------------------------------------------------------- /app/Console/Commands/CleanRounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/CleanRounds.php -------------------------------------------------------------------------------- /app/Console/Commands/ForceClearRounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/ForceClearRounds.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateSitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/GenerateSitemap.php -------------------------------------------------------------------------------- /app/Console/Commands/MergeScores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/MergeScores.php -------------------------------------------------------------------------------- /app/Console/Commands/ResetRounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/ResetRounds.php -------------------------------------------------------------------------------- /app/Console/Commands/StorageMigrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/StorageMigrate.php -------------------------------------------------------------------------------- /app/Console/Commands/WeeklyTopUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Console/Commands/WeeklyTopUsers.php -------------------------------------------------------------------------------- /app/Events/MessageDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/MessageDeleted.php -------------------------------------------------------------------------------- /app/Events/MessageReactionUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/MessageReactionUpdated.php -------------------------------------------------------------------------------- /app/Events/MessageReported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/MessageReported.php -------------------------------------------------------------------------------- /app/Events/NewMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/NewMessage.php -------------------------------------------------------------------------------- /app/Events/NewScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/NewScore.php -------------------------------------------------------------------------------- /app/Events/RoundFinished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/RoundFinished.php -------------------------------------------------------------------------------- /app/Events/RoundStarted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/RoundStarted.php -------------------------------------------------------------------------------- /app/Events/TrackEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/TrackEnded.php -------------------------------------------------------------------------------- /app/Events/TrackPaused.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/TrackPaused.php -------------------------------------------------------------------------------- /app/Events/TrackPlayed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/TrackPlayed.php -------------------------------------------------------------------------------- /app/Events/TrackResumed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/TrackResumed.php -------------------------------------------------------------------------------- /app/Events/TrackVoted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/TrackVoted.php -------------------------------------------------------------------------------- /app/Events/UserHasFoundAllTheAnswers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/UserHasFoundAllTheAnswers.php -------------------------------------------------------------------------------- /app/Events/UserLevelUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Events/UserLevelUpdated.php -------------------------------------------------------------------------------- /app/Exports/PlaylistExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Exports/PlaylistExport.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AnswerTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/AnswerTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/FAQController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/FAQController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PlaylistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/PlaylistController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RoomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/RoomController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/StorageMigrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/StorageMigrationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/TeamController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/MessageReactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Api/MessageReactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Api/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/ContactController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/FAQController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/FAQController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LevelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/LevelController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LocalTrackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/LocalTrackController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Moderation/BannedUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Moderation/BannedUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Moderation/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Moderation/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Moderation/LocalTrackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Moderation/LocalTrackController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Moderation/ModeratorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Moderation/ModeratorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Moderation/TrashedMessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Moderation/TrashedMessageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Moderation/UserManagementController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/Moderation/UserManagementController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ModerationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/ModerationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PlaylistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/PlaylistController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PlaylistModeratorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/PlaylistModeratorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RankingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RankingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomBookmarkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RoomBookmarkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RoomController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomMessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RoomMessageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomModeratorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RoomModeratorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomPlaylistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RoomPlaylistController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoundController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/RoundController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SitemapController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/SitemapController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SocialController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/SocialController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/TeamController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TeamRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/TeamRequestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TrackAnswerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/TrackAnswerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TrackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/TrackController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserBanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/UserBanController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/VoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Controllers/VoteController.php -------------------------------------------------------------------------------- /app/Http/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Helpers.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserIsAdministrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Middleware/UserIsAdministrator.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserIsPublicModerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Middleware/UserIsPublicModerator.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/LocalTrackRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Requests/LocalTrackRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Moderation/BanUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Requests/Moderation/BanUserRequest.php -------------------------------------------------------------------------------- /app/Http/Traits/HasPicture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Traits/HasPicture.php -------------------------------------------------------------------------------- /app/Http/Traits/Sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Http/Traits/Sluggable.php -------------------------------------------------------------------------------- /app/Jobs/CleanEmptyPlaylists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/CleanEmptyPlaylists.php -------------------------------------------------------------------------------- /app/Jobs/CleanOldMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/CleanOldMessages.php -------------------------------------------------------------------------------- /app/Jobs/CleanRooms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/CleanRooms.php -------------------------------------------------------------------------------- /app/Jobs/MigrateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/MigrateFile.php -------------------------------------------------------------------------------- /app/Jobs/ProcessAddScoreToTotalScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessAddScoreToTotalScore.php -------------------------------------------------------------------------------- /app/Jobs/ProcessCleanRounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessCleanRounds.php -------------------------------------------------------------------------------- /app/Jobs/ProcessDeletedTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessDeletedTrack.php -------------------------------------------------------------------------------- /app/Jobs/ProcessImportTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessImportTrack.php -------------------------------------------------------------------------------- /app/Jobs/ProcessResetUnfinishedRounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessResetUnfinishedRounds.php -------------------------------------------------------------------------------- /app/Jobs/ProcessRoundFinished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessRoundFinished.php -------------------------------------------------------------------------------- /app/Jobs/ProcessScoreCreation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessScoreCreation.php -------------------------------------------------------------------------------- /app/Jobs/ProcessTrackEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessTrackEnded.php -------------------------------------------------------------------------------- /app/Jobs/ProcessTrackPlayed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessTrackPlayed.php -------------------------------------------------------------------------------- /app/Jobs/ProcessUserCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/ProcessUserCreated.php -------------------------------------------------------------------------------- /app/Jobs/SendDiscordNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/SendDiscordNotification.php -------------------------------------------------------------------------------- /app/Jobs/StartRound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/StartRound.php -------------------------------------------------------------------------------- /app/Jobs/UpdateUserLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Jobs/UpdateUserLevel.php -------------------------------------------------------------------------------- /app/Models/AnswerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/AnswerType.php -------------------------------------------------------------------------------- /app/Models/Bookmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Bookmark.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/FAQ.php -------------------------------------------------------------------------------- /app/Models/LocalTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/LocalTrack.php -------------------------------------------------------------------------------- /app/Models/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Message.php -------------------------------------------------------------------------------- /app/Models/MessageReaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/MessageReaction.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Playlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Playlist.php -------------------------------------------------------------------------------- /app/Models/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Room.php -------------------------------------------------------------------------------- /app/Models/Round.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Round.php -------------------------------------------------------------------------------- /app/Models/Score.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Score.php -------------------------------------------------------------------------------- /app/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Team.php -------------------------------------------------------------------------------- /app/Models/TeamRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/TeamRequest.php -------------------------------------------------------------------------------- /app/Models/TotalScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/TotalScore.php -------------------------------------------------------------------------------- /app/Models/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Track.php -------------------------------------------------------------------------------- /app/Models/TrackAnswer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/TrackAnswer.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/UserLevel.php -------------------------------------------------------------------------------- /app/Models/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Models/Vote.php -------------------------------------------------------------------------------- /app/Notifications/ContactMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/ContactMessage.php -------------------------------------------------------------------------------- /app/Notifications/NewRoomAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/NewRoomAlert.php -------------------------------------------------------------------------------- /app/Notifications/NewSuggestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/NewSuggestion.php -------------------------------------------------------------------------------- /app/Notifications/NewTeamRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/NewTeamRequest.php -------------------------------------------------------------------------------- /app/Notifications/TeamRequestApproved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/TeamRequestApproved.php -------------------------------------------------------------------------------- /app/Notifications/TeamRequestRejected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/TeamRequestRejected.php -------------------------------------------------------------------------------- /app/Notifications/TrackDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/TrackDeleted.php -------------------------------------------------------------------------------- /app/Notifications/UserBanned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/UserBanned.php -------------------------------------------------------------------------------- /app/Notifications/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Notifications/Welcome.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthorizationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Providers/AuthorizationServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/MailServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Providers/MailServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/AudioDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Rules/AudioDuration.php -------------------------------------------------------------------------------- /app/Rules/Reserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Rules/Reserved.php -------------------------------------------------------------------------------- /app/Services/BrevoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/BrevoService.php -------------------------------------------------------------------------------- /app/Services/LevelCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/LevelCalculator.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/AppleMusicService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/AppleMusicService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/AudiusService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/AudiusService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/BlinestLikesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/BlinestLikesService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/DeezerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/DeezerService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/Exceptions/ProviderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/Exceptions/ProviderException.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/LocalTrackService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/LocalTrackService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/SpotifyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/SpotifyService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/YouTubeMusicService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/YouTubeMusicService.php -------------------------------------------------------------------------------- /app/Services/MusicProviders/YoutubeWithoutApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProviders/YoutubeWithoutApiService.php -------------------------------------------------------------------------------- /app/Services/MusicProvidersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/app/Services/MusicProvidersService.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/artisan -------------------------------------------------------------------------------- /boost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/boost.json -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/app.php -------------------------------------------------------------------------------- /config/ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/ban.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/horizon.php -------------------------------------------------------------------------------- /config/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/inertia.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_DEPRECATIONS_CHANNEL', 'null'), 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/reverb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/reverb.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/services.php -------------------------------------------------------------------------------- /config/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/config/sitemap.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/ContactFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/factories/ContactFactory.php -------------------------------------------------------------------------------- /database/factories/RoomFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/factories/RoomFactory.php -------------------------------------------------------------------------------- /database/factories/TeamFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/factories/TeamFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_01_000001_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2020_01_01_000001_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_01_000002_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2020_01_01_000002_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2020_01_01_000004_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2020_01_01_000004_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_06_152530_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2021_12_06_152530_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_06_152548_create_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2021_12_06_152548_create_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_06_152558_create_playlists_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2021_12_06_152558_create_playlists_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_06_155416_create_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2021_12_06_155416_create_teams_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_06_155443_create_tracks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2021_12_06_155443_create_tracks_table.php -------------------------------------------------------------------------------- /database/migrations/2021_12_06_155831_create_track_answers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2021_12_06_155831_create_track_answers_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_21_123505_create_playlist_room_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_06_21_123505_create_playlist_room_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_23_100844_create_rounds_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_06_23_100844_create_rounds_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_26_153704_create_scores_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_06_26_153704_create_scores_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_26_153801_create_answer_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_06_26_153801_create_answer_types_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_27_170346_create_moderables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_06_27_170346_create_moderables_table.php -------------------------------------------------------------------------------- /database/migrations/2022_06_27_174224_create_votes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_06_27_174224_create_votes_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_03_183503_create_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_07_03_183503_create_messages_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_07_102503_create_team_requests_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_07_07_102503_create_team_requests_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_07_104726_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_07_07_104726_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2022_10_08_111600_create_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_10_08_111600_create_pages_table.php -------------------------------------------------------------------------------- /database/migrations/2022_10_27_125804_add_slug_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_10_27_125804_add_slug_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_22_103405_create_total_scores_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_11_22_103405_create_total_scores_table.php -------------------------------------------------------------------------------- /database/migrations/2022_11_22_165118_add_autostart_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2022_11_22_165118_add_autostart_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2023_01_26_110947_create_faqs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2023_01_26_110947_create_faqs_table.php -------------------------------------------------------------------------------- /database/migrations/2023_02_13_130213_update_users_table_for_bans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2023_02_13_130213_update_users_table_for_bans.php -------------------------------------------------------------------------------- /database/migrations/2023_03_12_182137_create_bookmarks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2023_03_12_182137_create_bookmarks_table.php -------------------------------------------------------------------------------- /database/migrations/2023_04_02_114216_update_scores_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2023_04_02_114216_update_scores_table.php -------------------------------------------------------------------------------- /database/migrations/2023_06_07_000001_create_pulse_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2023_06_07_000001_create_pulse_tables.php -------------------------------------------------------------------------------- /database/migrations/2023_12_21_101841_add_featured_and_round_count_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2023_12_21_101841_add_featured_and_round_count_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2024_06_01_000000_rename_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2024_06_01_000000_rename_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2024_06_03_171047_add_index_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2024_06_03_171047_add_index_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2024_06_05_222826_index_is_featured_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2024_06_05_222826_index_is_featured_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_05_191520_add_user_count_to_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2024_10_05_191520_add_user_count_to_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2024_12_09_102225_change_preview_field_to_tracks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2024_12_09_102225_change_preview_field_to_tracks_table.php -------------------------------------------------------------------------------- /database/migrations/2025_05_04_130409_create_local_tracks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2025_05_04_130409_create_local_tracks_table.php -------------------------------------------------------------------------------- /database/migrations/2025_07_02_170811_create_message_reactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2025_07_02_170811_create_message_reactions_table.php -------------------------------------------------------------------------------- /database/migrations/2025_11_28_154242_add_current_track_started_at_to_rounds_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2025_11_28_154242_add_current_track_started_at_to_rounds_table.php -------------------------------------------------------------------------------- /database/migrations/2025_11_30_142656_create_user_levels_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2025_11_30_142656_create_user_levels_table.php -------------------------------------------------------------------------------- /database/migrations/2025_11_30_143958_add_motivational_metrics_to_user_levels_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/2025_11_30_143958_add_motivational_metrics_to_user_levels_table.php -------------------------------------------------------------------------------- /database/migrations/create_bans_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/create_bans_table.php -------------------------------------------------------------------------------- /database/migrations/metas_field_to_bans_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/migrations/metas_field_to_bans_table.php -------------------------------------------------------------------------------- /database/seeders/AnswerTypesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/seeders/AnswerTypesSeeder.php -------------------------------------------------------------------------------- /database/seeders/CategoriesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/seeders/CategoriesSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoomSlugsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/database/seeders/RoomSlugsSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /herd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/herd.yml -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/bad-words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/bad-words.php -------------------------------------------------------------------------------- /lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/messages.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/validation-attributes.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/fr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/auth.php -------------------------------------------------------------------------------- /lang/fr/bad-words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/bad-words.php -------------------------------------------------------------------------------- /lang/fr/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/messages.php -------------------------------------------------------------------------------- /lang/fr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/pagination.php -------------------------------------------------------------------------------- /lang/fr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/passwords.php -------------------------------------------------------------------------------- /lang/fr/validation-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/validation-attributes.php -------------------------------------------------------------------------------- /lang/fr/validation-inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/validation-inline.php -------------------------------------------------------------------------------- /lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/lang/fr/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-6495635642797272, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /public/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/build/manifest.json -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/statics/logo_blinest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/images/statics/logo_blinest.png -------------------------------------------------------------------------------- /public/images/statics/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/images/statics/screenshot.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/vendor/horizon/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/app-dark.css -------------------------------------------------------------------------------- /public/vendor/horizon/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/app.css -------------------------------------------------------------------------------- /public/vendor/horizon/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/app.js -------------------------------------------------------------------------------- /public/vendor/horizon/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/img/favicon.png -------------------------------------------------------------------------------- /public/vendor/horizon/img/horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/img/horizon.svg -------------------------------------------------------------------------------- /public/vendor/horizon/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/img/sprite.svg -------------------------------------------------------------------------------- /public/vendor/horizon/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/vendor/horizon/mix-manifest.json -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/readme.md -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/css/buttons.css -------------------------------------------------------------------------------- /resources/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/css/custom.css -------------------------------------------------------------------------------- /resources/css/fonts.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.bunny.net/css?family=poppins:300); -------------------------------------------------------------------------------- /resources/css/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/css/form.css -------------------------------------------------------------------------------- /resources/css/transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/css/transitions.css -------------------------------------------------------------------------------- /resources/js/Components/AdminMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/AdminMenu.vue -------------------------------------------------------------------------------- /resources/js/Components/Adsense.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Adsense.vue -------------------------------------------------------------------------------- /resources/js/Components/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Badge.vue -------------------------------------------------------------------------------- /resources/js/Components/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Card.vue -------------------------------------------------------------------------------- /resources/js/Components/Chat/AlertModeratorsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Chat/AlertModeratorsModal.vue -------------------------------------------------------------------------------- /resources/js/Components/Chat/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Chat/Chat.vue -------------------------------------------------------------------------------- /resources/js/Components/Chat/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Chat/Message.vue -------------------------------------------------------------------------------- /resources/js/Components/Chat/Moderation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Chat/Moderation.vue -------------------------------------------------------------------------------- /resources/js/Components/Chat/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Chat/emojis.js -------------------------------------------------------------------------------- /resources/js/Components/CheckboxInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/CheckboxInput.vue -------------------------------------------------------------------------------- /resources/js/Components/Clip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Clip.vue -------------------------------------------------------------------------------- /resources/js/Components/DarkmodeSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/DarkmodeSwitcher.vue -------------------------------------------------------------------------------- /resources/js/Components/DialogModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/DialogModal.vue -------------------------------------------------------------------------------- /resources/js/Components/DonationBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/DonationBanner.vue -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Dropdown.vue -------------------------------------------------------------------------------- /resources/js/Components/FileInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/FileInput.vue -------------------------------------------------------------------------------- /resources/js/Components/FlashMessages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/FlashMessages.vue -------------------------------------------------------------------------------- /resources/js/Components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Footer.vue -------------------------------------------------------------------------------- /resources/js/Components/Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Icon.vue -------------------------------------------------------------------------------- /resources/js/Components/LanguageSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/LanguageSwitcher.vue -------------------------------------------------------------------------------- /resources/js/Components/LevelBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/LevelBadge.vue -------------------------------------------------------------------------------- /resources/js/Components/LevelDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/LevelDisplay.vue -------------------------------------------------------------------------------- /resources/js/Components/LoadingButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/LoadingButton.vue -------------------------------------------------------------------------------- /resources/js/Components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Logo.vue -------------------------------------------------------------------------------- /resources/js/Components/MainMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/MainMenu.vue -------------------------------------------------------------------------------- /resources/js/Components/MiniPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/MiniPlayer.vue -------------------------------------------------------------------------------- /resources/js/Components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Modal.vue -------------------------------------------------------------------------------- /resources/js/Components/Moderation/BanForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Moderation/BanForm.vue -------------------------------------------------------------------------------- /resources/js/Components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Navbar.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/NewRoomAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/NewRoomAlert.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/NewSuggestion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/NewSuggestion.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/NewTeamRequest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/NewTeamRequest.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/Notifications.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/TeamRequestApproved.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/TeamRequestApproved.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/TeamRequestRejected.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/TeamRequestRejected.vue -------------------------------------------------------------------------------- /resources/js/Components/Notifications/TrackDeleted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Notifications/TrackDeleted.vue -------------------------------------------------------------------------------- /resources/js/Components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Pagination.vue -------------------------------------------------------------------------------- /resources/js/Components/PlayingIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/PlayingIcon.vue -------------------------------------------------------------------------------- /resources/js/Components/Playlists/ImportPlaylist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Playlists/ImportPlaylist.vue -------------------------------------------------------------------------------- /resources/js/Components/Playlists/ModeratorsManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Playlists/ModeratorsManager.vue -------------------------------------------------------------------------------- /resources/js/Components/Playlists/RoomsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Playlists/RoomsList.vue -------------------------------------------------------------------------------- /resources/js/Components/Playlists/TrackAnswerForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Playlists/TrackAnswerForm.vue -------------------------------------------------------------------------------- /resources/js/Components/Playlists/TracksManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Playlists/TracksManager.vue -------------------------------------------------------------------------------- /resources/js/Components/Playlists/UploadTrack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Playlists/UploadTrack.vue -------------------------------------------------------------------------------- /resources/js/Components/Rooms/ModeratorsManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Rooms/ModeratorsManager.vue -------------------------------------------------------------------------------- /resources/js/Components/Rooms/PlaylistsManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Rooms/PlaylistsManager.vue -------------------------------------------------------------------------------- /resources/js/Components/SearchFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/SearchFilter.vue -------------------------------------------------------------------------------- /resources/js/Components/SearchRooms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/SearchRooms.vue -------------------------------------------------------------------------------- /resources/js/Components/SelectInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/SelectInput.vue -------------------------------------------------------------------------------- /resources/js/Components/ShareModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/ShareModal.vue -------------------------------------------------------------------------------- /resources/js/Components/Snow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Snow.vue -------------------------------------------------------------------------------- /resources/js/Components/SocialIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/SocialIcon.vue -------------------------------------------------------------------------------- /resources/js/Components/Sortable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Sortable.vue -------------------------------------------------------------------------------- /resources/js/Components/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Spinner.vue -------------------------------------------------------------------------------- /resources/js/Components/StructuredData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/StructuredData.vue -------------------------------------------------------------------------------- /resources/js/Components/TextEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/TextEditor.vue -------------------------------------------------------------------------------- /resources/js/Components/TextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/TextInput.vue -------------------------------------------------------------------------------- /resources/js/Components/TextareaInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/TextareaInput.vue -------------------------------------------------------------------------------- /resources/js/Components/Tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Tip.vue -------------------------------------------------------------------------------- /resources/js/Components/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Tooltip.vue -------------------------------------------------------------------------------- /resources/js/Components/TrashedMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/TrashedMessage.vue -------------------------------------------------------------------------------- /resources/js/Components/UserDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/UserDropdown.vue -------------------------------------------------------------------------------- /resources/js/Components/UserGestureModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/UserGestureModal.vue -------------------------------------------------------------------------------- /resources/js/Components/Volume.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Components/Volume.vue -------------------------------------------------------------------------------- /resources/js/Layouts/AdminLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Layouts/AdminLayout.vue -------------------------------------------------------------------------------- /resources/js/Layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Layouts/AppLayout.vue -------------------------------------------------------------------------------- /resources/js/Layouts/RoomLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Layouts/RoomLayout.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/AnswerTypes/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/AnswerTypes/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/AnswerTypes/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/AnswerTypes/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/AnswerTypes/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/AnswerTypes/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Categories/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Categories/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Categories/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Categories/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Categories/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Categories/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/FAQ/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/FAQ/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/FAQ/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/FAQ/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/FAQ/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/FAQ/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Pages/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Pages/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Pages/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Pages/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Pages/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Playlists/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Playlists/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Playlists/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Playlists/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Playlists/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Playlists/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Rooms/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Rooms/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Rooms/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Rooms/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Rooms/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Rooms/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Teams/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Teams/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Teams/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Teams/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Teams/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Teams/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Users/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Users/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Users/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Users/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Admin/Users/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Admin/Users/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/Login.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/LoginForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/Register.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Socialite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Auth/Socialite.vue -------------------------------------------------------------------------------- /resources/js/Pages/Contact/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Contact/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Contact/Sent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Contact/Sent.vue -------------------------------------------------------------------------------- /resources/js/Pages/FAQ/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/FAQ/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/FAQ/partials/FAQ.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/FAQ/partials/FAQ.vue -------------------------------------------------------------------------------- /resources/js/Pages/Home/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Home/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Home/partials/FeaturedRoom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Home/partials/FeaturedRoom.vue -------------------------------------------------------------------------------- /resources/js/Pages/Home/partials/Room.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Home/partials/Room.vue -------------------------------------------------------------------------------- /resources/js/Pages/Home/partials/Rooms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Home/partials/Rooms.vue -------------------------------------------------------------------------------- /resources/js/Pages/Home/partials/TopPlayers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Home/partials/TopPlayers.vue -------------------------------------------------------------------------------- /resources/js/Pages/Level/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Level/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Me/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Me/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/BannedUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/BannedUsers.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/Layout.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/LocalTracks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/LocalTracks.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/Moderators.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/Moderators.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/TrashedMessages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/TrashedMessages.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/UsersManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/UsersManagement.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/partials/BannedUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/partials/BannedUsers.vue -------------------------------------------------------------------------------- /resources/js/Pages/Moderation/partials/UsersManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Moderation/partials/UsersManagement.vue -------------------------------------------------------------------------------- /resources/js/Pages/Pages/Banned.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Pages/Banned.vue -------------------------------------------------------------------------------- /resources/js/Pages/Pages/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Pages/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Playlists/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Playlists/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Playlists/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Playlists/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Playlists/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Playlists/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profiles/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Profiles/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profiles/partials/BookmarksTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Profiles/partials/BookmarksTab.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profiles/partials/LikesTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Profiles/partials/LikesTab.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profiles/partials/ScoresTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Profiles/partials/ScoresTab.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/Level.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/Level.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/Score.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/Score.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/Teams.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/Teams.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/Week.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/Week.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/partials/RankingList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/partials/RankingList.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/partials/RankingTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/partials/RankingTabs.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rankings/partials/UserPosition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rankings/partials/UserPosition.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/Password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/Password.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/Answers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/Answers.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/Bookmark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/Bookmark.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/Controls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/Controls.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/EditOptionsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/EditOptionsForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/FinishedRoundModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/FinishedRoundModal.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/Player.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/Player.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/Podium.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/Podium.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/PodiumModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/PodiumModal.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/Ranking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/Ranking.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/RoomActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/RoomActions.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/SendSuggestionModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/SendSuggestionModal.vue -------------------------------------------------------------------------------- /resources/js/Pages/Rooms/partials/UserInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Rooms/partials/UserInput.vue -------------------------------------------------------------------------------- /resources/js/Pages/Teams/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Teams/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Teams/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Teams/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Teams/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/Pages/Teams/Show.vue -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/echo.js -------------------------------------------------------------------------------- /resources/js/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/ssr.js -------------------------------------------------------------------------------- /resources/js/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/js/translation.js -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/sitemap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/resources/views/sitemap.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/guests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/guests.php -------------------------------------------------------------------------------- /routes/rooms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/rooms.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchev/blinest/HEAD/vite.config.js --------------------------------------------------------------------------------