├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── docs.yml ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── Makefile ├── README.md ├── backend ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── docs │ ├── .nojekyll │ ├── README.md │ ├── classes │ │ ├── app_module.AppModule.md │ │ ├── auth_auth_module.AuthModule.md │ │ ├── auth_controller_intra42_controller.Intra42Controller.md │ │ ├── auth_controller_twoFA_controller.TwoFAController.md │ │ ├── auth_guard_intra42_guard.Intra42OAuthGuard.md │ │ ├── auth_guard_jwt_guard.JwtAuthGuard.md │ │ ├── auth_guard_twoFA_guard.TwoFAGuard.md │ │ ├── auth_guard_wsJwt_guard.WsJwt2FAAuthGuard.md │ │ ├── auth_service_twoFA_service.TwoFAService.md │ │ ├── auth_strategy_intra42_strategy.Intra42Strategy.md │ │ ├── auth_strategy_jwt_strategy.JwtStrategy.md │ │ ├── game_entities_game_entity.Game.md │ │ ├── game_entities_queuedplayer_entity.QueuedPlayer.md │ │ ├── game_game_gateway.GameGateway.md │ │ ├── game_game_module.GameModule.md │ │ ├── game_game_resolver.GameResolver.md │ │ ├── game_game_service.GameService.md │ │ ├── game_queue_subscriber.QueuedPlayerSubscriber.md │ │ ├── health_health_controller.HealthController.md │ │ ├── health_health_module.HealthModule.md │ │ ├── prc_channel_channel_input.CreateChannelInput.md │ │ ├── prc_channel_channel_input.LeaveChannelInput.md │ │ ├── prc_channel_channel_input.ToggleChannelPpInput.md │ │ ├── prc_channel_channel_resolver.ChannelResolver.md │ │ ├── prc_channel_channel_service.ChannelService.md │ │ ├── prc_channel_channel_user_channel_user_resolver.ChannelUserResolver.md │ │ ├── prc_channel_channel_user_channel_user_service.ChannelUserService.md │ │ ├── prc_channel_channel_user_entities_channel_user_entity.ChannelUser.md │ │ ├── prc_channel_entities_channel_entity.Channel.md │ │ ├── prc_prc_gateway.PrcGateway.md │ │ ├── prc_prc_module.PrcModule.md │ │ ├── tools_ExceptionFilter.AllExceptionFilter.md │ │ ├── tools_ExceptionFilter.CustomPrcExceptionFilter.md │ │ ├── tools_ExceptionFilter.HttpExceptionFilter.md │ │ ├── tools_ExceptionFilter.TypeORMErrorFilter.md │ │ ├── tools_memdb_mock.MockRepo.md │ │ ├── tools_memdbv2_mock.MockDB.md │ │ ├── users_decorator_user_pipe_service.UserPipe.md │ │ ├── users_dto_create_user_input.CreateUserInput.md │ │ ├── users_dto_update_blocking_input.UpdateUserBlockingInput.md │ │ ├── users_dto_update_equipped_items_input.UpdateUserEquippedItemsInput.md │ │ ├── users_dto_update_friendship_input.UpdateUserFriendshipInput.md │ │ ├── users_dto_update_gamerequest_input.UpdateGameRequestInput.md │ │ ├── users_dto_update_username_input.UpdateUsernameInput.md │ │ ├── users_entities_item_entity.Item.md │ │ ├── users_entities_user_entity.User.md │ │ ├── users_users_controller.UsersController.md │ │ ├── users_users_module.UsersModule.md │ │ ├── users_users_resolver.UsersResolver.md │ │ └── users_users_service.UsersService.md │ ├── enums │ │ ├── game_entities_game_entity.GameState.md │ │ ├── users_dto_update_blocking_input.AllowedUpdateBlockingMethod.md │ │ ├── users_dto_update_equipped_items_input.AllowedUpdateEquippedItemsMethod.md │ │ ├── users_dto_update_friendship_input.AllowedUpdateFriendshipMethod.md │ │ └── users_dto_update_gamerequest_input.AllowedUpdateGameRequestMethod.md │ ├── interfaces │ │ └── auth_strategy_jwt_strategy.JwtPayload.md │ ├── modules.md │ └── modules │ │ ├── app_module.md │ │ ├── auth_auth_module.md │ │ ├── auth_controller_intra42_controller.md │ │ ├── auth_controller_twoFA_controller.md │ │ ├── auth_guard_intra42_guard.md │ │ ├── auth_guard_jwt_guard.md │ │ ├── auth_guard_twoFA_guard.md │ │ ├── auth_guard_wsJwt_guard.md │ │ ├── auth_service_twoFA_service.md │ │ ├── auth_strategy_intra42_strategy.md │ │ ├── auth_strategy_jwt_strategy.md │ │ ├── game_entities_game_entity.md │ │ ├── game_entities_game_entity_mock.md │ │ ├── game_entities_queuedplayer_entity.md │ │ ├── game_game_gateway.md │ │ ├── game_game_module.md │ │ ├── game_game_resolver.md │ │ ├── game_game_service.md │ │ ├── game_queue_subscriber.md │ │ ├── health_health_controller.md │ │ ├── health_health_module.md │ │ ├── main.md │ │ ├── prc_channel_channel_input.md │ │ ├── prc_channel_channel_resolver.md │ │ ├── prc_channel_channel_service.md │ │ ├── prc_channel_channel_user_channel_user_resolver.md │ │ ├── prc_channel_channel_user_channel_user_service.md │ │ ├── prc_channel_channel_user_entities_channel_user_entity.md │ │ ├── prc_channel_entities_channel_entity.md │ │ ├── prc_message_message.md │ │ ├── prc_prc_gateway.md │ │ ├── prc_prc_module.md │ │ ├── tools_ExceptionFilter.md │ │ ├── tools_UserFromWs.md │ │ ├── tools_memdb_mock.md │ │ ├── tools_memdbv2_mock.md │ │ ├── users_decorator_current_jwt_payload_decorator.md │ │ ├── users_decorator_current_user_decorator.md │ │ ├── users_decorator_user_pipe_service.md │ │ ├── users_dto_create_user_input.md │ │ ├── users_dto_update_blocking_input.md │ │ ├── users_dto_update_equipped_items_input.md │ │ ├── users_dto_update_friendship_input.md │ │ ├── users_dto_update_gamerequest_input.md │ │ ├── users_dto_update_username_input.md │ │ ├── users_entities_item_entity.md │ │ ├── users_entities_user_entity.md │ │ ├── users_entities_user_entity_mock.md │ │ ├── users_users_controller.md │ │ ├── users_users_module.md │ │ ├── users_users_resolver.md │ │ └── users_users_service.md ├── nest-cli.json ├── package-lock.json ├── package.json ├── src │ ├── app.module.ts │ ├── auth │ │ ├── auth.module.ts │ │ ├── controller │ │ │ ├── intra42.controller.spec.ts │ │ │ ├── intra42.controller.ts │ │ │ ├── twoFA.controller.spec.ts │ │ │ └── twoFA.controller.ts │ │ ├── guard │ │ │ ├── intra42.guard.spec.ts │ │ │ ├── intra42.guard.ts │ │ │ ├── jwt.guard.spec.ts │ │ │ ├── jwt.guard.ts │ │ │ ├── twoFA.guard.spec.ts │ │ │ ├── twoFA.guard.ts │ │ │ ├── wsJwt.guard.spec.ts │ │ │ └── wsJwt.guard.ts │ │ ├── service │ │ │ ├── twoFA.service.spec.ts │ │ │ └── twoFA.service.ts │ │ └── strategy │ │ │ ├── intra42.strategy.spec.ts │ │ │ ├── intra42.strategy.ts │ │ │ ├── jwt.strategy.spec.ts │ │ │ └── jwt.strategy.ts │ ├── game │ │ ├── entities │ │ │ ├── game.entity.mock.ts │ │ │ ├── game.entity.ts │ │ │ └── queuedplayer.entity.ts │ │ ├── game.gateway.spec.ts │ │ ├── game.gateway.ts │ │ ├── game.module.ts │ │ ├── game.resolver.spec.ts │ │ ├── game.resolver.ts │ │ ├── game.service.spec.ts │ │ ├── game.service.ts │ │ └── queue.subscriber.ts │ ├── health │ │ ├── health.controller.spec.ts │ │ ├── health.controller.ts │ │ └── health.module.ts │ ├── main.ts │ ├── prc │ │ ├── channel │ │ │ ├── channel-user │ │ │ │ ├── channel-user.resolver.spec.ts │ │ │ │ ├── channel-user.resolver.ts │ │ │ │ ├── channel-user.service.spec.ts │ │ │ │ ├── channel-user.service.ts │ │ │ │ └── entities │ │ │ │ │ └── channel-user.entity.ts │ │ │ ├── channel.input.ts │ │ │ ├── channel.resolver.spec.ts │ │ │ ├── channel.resolver.ts │ │ │ ├── channel.service.spec.ts │ │ │ ├── channel.service.ts │ │ │ └── entities │ │ │ │ └── channel.entity.ts │ │ ├── message │ │ │ └── message.ts │ │ ├── prc.gateway.spec.ts │ │ ├── prc.gateway.ts │ │ └── prc.module.ts │ ├── schema.gql │ ├── tools │ │ ├── ExceptionFilter.ts │ │ ├── UserFromWs.ts │ │ ├── memdb.mock.ts │ │ └── memdbv2.mock.ts │ └── users │ │ ├── decorator │ │ ├── current-jwt-payload.decorator.ts │ │ ├── current-user.decorator.ts │ │ └── user-pipe.service.ts │ │ ├── dto │ │ ├── create-user.input.ts │ │ ├── update-blocking.input.ts │ │ ├── update-equipped-items.input.ts │ │ ├── update-friendship.input.ts │ │ ├── update-gamerequest.input.ts │ │ └── update-username.input.ts │ │ ├── entities │ │ ├── item.entity.ts │ │ ├── user.entity.mock.ts │ │ └── user.entity.ts │ │ ├── users.controller.spec.ts │ │ ├── users.controller.ts │ │ ├── users.module.ts │ │ ├── users.resolver.spec.ts │ │ ├── users.resolver.ts │ │ ├── users.service.spec.ts │ │ └── users.service.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json ├── docker-compose.prod.yaml ├── docker-compose.yaml ├── example.env ├── frontend ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── env.d.ts ├── index.html ├── nginx.site.conf ├── package-lock.json ├── package.json ├── public │ ├── christmas.png │ └── pongking_boi_trans.svg ├── src │ ├── App.vue │ ├── assets │ │ ├── ColdHot.png │ │ ├── OGPong.png │ │ ├── PongKingBanner2D.png │ │ ├── PongKingBanner3D.png │ │ ├── ball_white.png │ │ ├── christmas_banner.png │ │ ├── even-sexier-guy-001-modified.png │ │ ├── frosty_bg_frame.png │ │ ├── frosty_bg_frame_16_9.png │ │ ├── magnifier-dirty.png │ │ ├── magnifier.png │ │ ├── magnifier.svg │ │ ├── org_game_bg_16_9.png │ │ ├── paddle_white.png │ │ ├── pen-dirty.png │ │ ├── pen.png │ │ ├── pong.png │ │ ├── pongking_boi.svg │ │ ├── pongking_boi_bronze.png │ │ ├── pongking_boi_empty.png │ │ ├── pongking_boi_gold.png │ │ ├── pongking_boi_silver.png │ │ ├── sexiest-guy-001-modified.png │ │ ├── sexy-guy-001-modified.png │ │ ├── star_bronze.png │ │ ├── star_gold.png │ │ ├── star_silver.png │ │ └── xmas.png │ ├── components │ │ ├── chat │ │ │ ├── channels │ │ │ │ ├── ChildChannelComponent.vue │ │ │ │ ├── ModalChannelComponent.vue │ │ │ │ └── ParentChannelsComponent.vue │ │ │ ├── chat │ │ │ │ └── ParentChatComponent.vue │ │ │ ├── options │ │ │ │ ├── ChildOptionsPeopleComponent.vue │ │ │ │ ├── ModalBanUserComponent.vue │ │ │ │ ├── ModalMuteUserComponent.vue │ │ │ │ ├── ModalUpdateAdminComponent.vue │ │ │ │ ├── ModalUpdatePasswordComponent.vue │ │ │ │ └── ParentOptionsComponent.vue │ │ │ ├── peoples │ │ │ │ ├── ChildPeopleComponent.vue │ │ │ │ └── ParentPeoplesComponent.vue │ │ │ └── requests │ │ │ │ ├── ChildRequestComponent.vue │ │ │ │ ├── FriendRequestComponent.vue │ │ │ │ ├── GameRequestComponent.vue │ │ │ │ └── ParentRequestsComponent.vue │ │ ├── game │ │ │ ├── EndScreenComponent.vue │ │ │ ├── GamePeopleComponent.vue │ │ │ ├── PongComponent.vue │ │ │ ├── QueueComponent.vue │ │ │ ├── ball.ts │ │ │ └── paddle.ts │ │ ├── globalUse │ │ │ ├── DropDownComponent.vue │ │ │ ├── ModalComponent.vue │ │ │ ├── NavbarComponent.vue │ │ │ ├── RoundPictureComponent.vue │ │ │ ├── TwoFAInputComponent.vue │ │ │ └── UserPlayedGameComponent.vue │ │ ├── landingview │ │ │ ├── CategoryComponent.vue │ │ │ └── CategorySearchComponent.vue │ │ ├── leaderboard │ │ │ ├── ChildMedalComponent.vue │ │ │ ├── ChildPlayerComponent.vue │ │ │ └── ParentLeaderboardComponent.vue │ │ ├── profile │ │ │ ├── aboutMe │ │ │ │ └── AboutMeComponent.vue │ │ │ ├── achievement │ │ │ │ ├── ChildAchievementComponent.vue │ │ │ │ └── ParentAchievementsComponent.vue │ │ │ ├── history │ │ │ │ └── ParentHistoryComponent.vue │ │ │ └── profile │ │ │ │ ├── Enable2FAComponent.vue │ │ │ │ ├── ModalChangePictureComponent.vue │ │ │ │ ├── ModalChangeUsernameComponent.vue │ │ │ │ └── ProfileComponent.vue │ │ ├── skinShop │ │ │ ├── ParentSkinShopComponent.vue │ │ │ └── PayPalButtonComponent.vue │ │ └── stream │ │ │ ├── ChildStreamComponent.vue │ │ │ └── SearchResultComponent.vue │ ├── main.ts │ ├── plugin │ │ ├── de.translation.ts │ │ ├── en.translation.ts │ │ ├── es.translation.ts │ │ ├── fr.translation.ts │ │ ├── i18n.ts │ │ ├── it.translation.ts │ │ ├── pl.translation.ts │ │ ├── ro.translation.ts │ │ ├── ru.translation.ts │ │ ├── tmp.translation.ts │ │ ├── tr.translation.ts │ │ └── uk.translation.ts │ ├── router │ │ └── index.ts │ ├── service │ │ ├── ChannelService.ts │ │ ├── ChannelUserService.ts │ │ ├── GameService.ts │ │ ├── GraphQLService.ts │ │ ├── UserService.ts │ │ └── socket.ts │ ├── store │ │ ├── error.ts │ │ ├── message.ts │ │ └── user.ts │ └── views │ │ ├── ChatView.vue │ │ ├── LandingView.vue │ │ ├── LeaderboardView.vue │ │ ├── LoginView.vue │ │ ├── PageNotFoundView.vue │ │ ├── PongView.vue │ │ ├── ProfileView.vue │ │ ├── ReplayView.vue │ │ ├── SkinView.vue │ │ └── StreamView.vue ├── tsconfig.config.json ├── tsconfig.json └── vite.config.ts └── tools └── devcontainer ├── Dockerfile └── entrypoint.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *.swp 3 | .DS_Store 4 | .idea 5 | backend/uploads 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/.eslintrc.js -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/.nojekyll -------------------------------------------------------------------------------- /backend/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/README.md -------------------------------------------------------------------------------- /backend/docs/classes/app_module.AppModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/app_module.AppModule.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_auth_module.AuthModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_auth_module.AuthModule.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_controller_intra42_controller.Intra42Controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_controller_intra42_controller.Intra42Controller.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_controller_twoFA_controller.TwoFAController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_controller_twoFA_controller.TwoFAController.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_guard_intra42_guard.Intra42OAuthGuard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_guard_intra42_guard.Intra42OAuthGuard.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_guard_jwt_guard.JwtAuthGuard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_guard_jwt_guard.JwtAuthGuard.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_guard_twoFA_guard.TwoFAGuard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_guard_twoFA_guard.TwoFAGuard.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_guard_wsJwt_guard.WsJwt2FAAuthGuard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_guard_wsJwt_guard.WsJwt2FAAuthGuard.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_service_twoFA_service.TwoFAService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_service_twoFA_service.TwoFAService.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_strategy_intra42_strategy.Intra42Strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_strategy_intra42_strategy.Intra42Strategy.md -------------------------------------------------------------------------------- /backend/docs/classes/auth_strategy_jwt_strategy.JwtStrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/auth_strategy_jwt_strategy.JwtStrategy.md -------------------------------------------------------------------------------- /backend/docs/classes/game_entities_game_entity.Game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_entities_game_entity.Game.md -------------------------------------------------------------------------------- /backend/docs/classes/game_entities_queuedplayer_entity.QueuedPlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_entities_queuedplayer_entity.QueuedPlayer.md -------------------------------------------------------------------------------- /backend/docs/classes/game_game_gateway.GameGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_game_gateway.GameGateway.md -------------------------------------------------------------------------------- /backend/docs/classes/game_game_module.GameModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_game_module.GameModule.md -------------------------------------------------------------------------------- /backend/docs/classes/game_game_resolver.GameResolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_game_resolver.GameResolver.md -------------------------------------------------------------------------------- /backend/docs/classes/game_game_service.GameService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_game_service.GameService.md -------------------------------------------------------------------------------- /backend/docs/classes/game_queue_subscriber.QueuedPlayerSubscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/game_queue_subscriber.QueuedPlayerSubscriber.md -------------------------------------------------------------------------------- /backend/docs/classes/health_health_controller.HealthController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/health_health_controller.HealthController.md -------------------------------------------------------------------------------- /backend/docs/classes/health_health_module.HealthModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/health_health_module.HealthModule.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_input.CreateChannelInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_input.CreateChannelInput.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_input.LeaveChannelInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_input.LeaveChannelInput.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_input.ToggleChannelPpInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_input.ToggleChannelPpInput.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_resolver.ChannelResolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_resolver.ChannelResolver.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_service.ChannelService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_service.ChannelService.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_user_channel_user_resolver.ChannelUserResolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_user_channel_user_resolver.ChannelUserResolver.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_user_channel_user_service.ChannelUserService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_user_channel_user_service.ChannelUserService.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_channel_user_entities_channel_user_entity.ChannelUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_channel_user_entities_channel_user_entity.ChannelUser.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_channel_entities_channel_entity.Channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_channel_entities_channel_entity.Channel.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_prc_gateway.PrcGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_prc_gateway.PrcGateway.md -------------------------------------------------------------------------------- /backend/docs/classes/prc_prc_module.PrcModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/prc_prc_module.PrcModule.md -------------------------------------------------------------------------------- /backend/docs/classes/tools_ExceptionFilter.AllExceptionFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/tools_ExceptionFilter.AllExceptionFilter.md -------------------------------------------------------------------------------- /backend/docs/classes/tools_ExceptionFilter.CustomPrcExceptionFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/tools_ExceptionFilter.CustomPrcExceptionFilter.md -------------------------------------------------------------------------------- /backend/docs/classes/tools_ExceptionFilter.HttpExceptionFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/tools_ExceptionFilter.HttpExceptionFilter.md -------------------------------------------------------------------------------- /backend/docs/classes/tools_ExceptionFilter.TypeORMErrorFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/tools_ExceptionFilter.TypeORMErrorFilter.md -------------------------------------------------------------------------------- /backend/docs/classes/tools_memdb_mock.MockRepo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/tools_memdb_mock.MockRepo.md -------------------------------------------------------------------------------- /backend/docs/classes/tools_memdbv2_mock.MockDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/tools_memdbv2_mock.MockDB.md -------------------------------------------------------------------------------- /backend/docs/classes/users_decorator_user_pipe_service.UserPipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_decorator_user_pipe_service.UserPipe.md -------------------------------------------------------------------------------- /backend/docs/classes/users_dto_create_user_input.CreateUserInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_dto_create_user_input.CreateUserInput.md -------------------------------------------------------------------------------- /backend/docs/classes/users_dto_update_blocking_input.UpdateUserBlockingInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_dto_update_blocking_input.UpdateUserBlockingInput.md -------------------------------------------------------------------------------- /backend/docs/classes/users_dto_update_equipped_items_input.UpdateUserEquippedItemsInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_dto_update_equipped_items_input.UpdateUserEquippedItemsInput.md -------------------------------------------------------------------------------- /backend/docs/classes/users_dto_update_friendship_input.UpdateUserFriendshipInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_dto_update_friendship_input.UpdateUserFriendshipInput.md -------------------------------------------------------------------------------- /backend/docs/classes/users_dto_update_gamerequest_input.UpdateGameRequestInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_dto_update_gamerequest_input.UpdateGameRequestInput.md -------------------------------------------------------------------------------- /backend/docs/classes/users_dto_update_username_input.UpdateUsernameInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_dto_update_username_input.UpdateUsernameInput.md -------------------------------------------------------------------------------- /backend/docs/classes/users_entities_item_entity.Item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_entities_item_entity.Item.md -------------------------------------------------------------------------------- /backend/docs/classes/users_entities_user_entity.User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_entities_user_entity.User.md -------------------------------------------------------------------------------- /backend/docs/classes/users_users_controller.UsersController.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_users_controller.UsersController.md -------------------------------------------------------------------------------- /backend/docs/classes/users_users_module.UsersModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_users_module.UsersModule.md -------------------------------------------------------------------------------- /backend/docs/classes/users_users_resolver.UsersResolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_users_resolver.UsersResolver.md -------------------------------------------------------------------------------- /backend/docs/classes/users_users_service.UsersService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/classes/users_users_service.UsersService.md -------------------------------------------------------------------------------- /backend/docs/enums/game_entities_game_entity.GameState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/enums/game_entities_game_entity.GameState.md -------------------------------------------------------------------------------- /backend/docs/enums/users_dto_update_blocking_input.AllowedUpdateBlockingMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/enums/users_dto_update_blocking_input.AllowedUpdateBlockingMethod.md -------------------------------------------------------------------------------- /backend/docs/enums/users_dto_update_equipped_items_input.AllowedUpdateEquippedItemsMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/enums/users_dto_update_equipped_items_input.AllowedUpdateEquippedItemsMethod.md -------------------------------------------------------------------------------- /backend/docs/enums/users_dto_update_friendship_input.AllowedUpdateFriendshipMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/enums/users_dto_update_friendship_input.AllowedUpdateFriendshipMethod.md -------------------------------------------------------------------------------- /backend/docs/enums/users_dto_update_gamerequest_input.AllowedUpdateGameRequestMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/enums/users_dto_update_gamerequest_input.AllowedUpdateGameRequestMethod.md -------------------------------------------------------------------------------- /backend/docs/interfaces/auth_strategy_jwt_strategy.JwtPayload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/interfaces/auth_strategy_jwt_strategy.JwtPayload.md -------------------------------------------------------------------------------- /backend/docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules.md -------------------------------------------------------------------------------- /backend/docs/modules/app_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/app_module.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_auth_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_auth_module.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_controller_intra42_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_controller_intra42_controller.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_controller_twoFA_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_controller_twoFA_controller.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_guard_intra42_guard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_guard_intra42_guard.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_guard_jwt_guard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_guard_jwt_guard.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_guard_twoFA_guard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_guard_twoFA_guard.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_guard_wsJwt_guard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_guard_wsJwt_guard.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_service_twoFA_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_service_twoFA_service.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_strategy_intra42_strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_strategy_intra42_strategy.md -------------------------------------------------------------------------------- /backend/docs/modules/auth_strategy_jwt_strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/auth_strategy_jwt_strategy.md -------------------------------------------------------------------------------- /backend/docs/modules/game_entities_game_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_entities_game_entity.md -------------------------------------------------------------------------------- /backend/docs/modules/game_entities_game_entity_mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_entities_game_entity_mock.md -------------------------------------------------------------------------------- /backend/docs/modules/game_entities_queuedplayer_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_entities_queuedplayer_entity.md -------------------------------------------------------------------------------- /backend/docs/modules/game_game_gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_game_gateway.md -------------------------------------------------------------------------------- /backend/docs/modules/game_game_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_game_module.md -------------------------------------------------------------------------------- /backend/docs/modules/game_game_resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_game_resolver.md -------------------------------------------------------------------------------- /backend/docs/modules/game_game_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_game_service.md -------------------------------------------------------------------------------- /backend/docs/modules/game_queue_subscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/game_queue_subscriber.md -------------------------------------------------------------------------------- /backend/docs/modules/health_health_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/health_health_controller.md -------------------------------------------------------------------------------- /backend/docs/modules/health_health_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/health_health_module.md -------------------------------------------------------------------------------- /backend/docs/modules/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/main.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_channel_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_channel_input.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_channel_resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_channel_resolver.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_channel_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_channel_service.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_channel_user_channel_user_resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_channel_user_channel_user_resolver.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_channel_user_channel_user_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_channel_user_channel_user_service.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_channel_user_entities_channel_user_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_channel_user_entities_channel_user_entity.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_channel_entities_channel_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_channel_entities_channel_entity.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_message_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_message_message.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_prc_gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_prc_gateway.md -------------------------------------------------------------------------------- /backend/docs/modules/prc_prc_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/prc_prc_module.md -------------------------------------------------------------------------------- /backend/docs/modules/tools_ExceptionFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/tools_ExceptionFilter.md -------------------------------------------------------------------------------- /backend/docs/modules/tools_UserFromWs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/tools_UserFromWs.md -------------------------------------------------------------------------------- /backend/docs/modules/tools_memdb_mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/tools_memdb_mock.md -------------------------------------------------------------------------------- /backend/docs/modules/tools_memdbv2_mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/tools_memdbv2_mock.md -------------------------------------------------------------------------------- /backend/docs/modules/users_decorator_current_jwt_payload_decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_decorator_current_jwt_payload_decorator.md -------------------------------------------------------------------------------- /backend/docs/modules/users_decorator_current_user_decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_decorator_current_user_decorator.md -------------------------------------------------------------------------------- /backend/docs/modules/users_decorator_user_pipe_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_decorator_user_pipe_service.md -------------------------------------------------------------------------------- /backend/docs/modules/users_dto_create_user_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_dto_create_user_input.md -------------------------------------------------------------------------------- /backend/docs/modules/users_dto_update_blocking_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_dto_update_blocking_input.md -------------------------------------------------------------------------------- /backend/docs/modules/users_dto_update_equipped_items_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_dto_update_equipped_items_input.md -------------------------------------------------------------------------------- /backend/docs/modules/users_dto_update_friendship_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_dto_update_friendship_input.md -------------------------------------------------------------------------------- /backend/docs/modules/users_dto_update_gamerequest_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_dto_update_gamerequest_input.md -------------------------------------------------------------------------------- /backend/docs/modules/users_dto_update_username_input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_dto_update_username_input.md -------------------------------------------------------------------------------- /backend/docs/modules/users_entities_item_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_entities_item_entity.md -------------------------------------------------------------------------------- /backend/docs/modules/users_entities_user_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_entities_user_entity.md -------------------------------------------------------------------------------- /backend/docs/modules/users_entities_user_entity_mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_entities_user_entity_mock.md -------------------------------------------------------------------------------- /backend/docs/modules/users_users_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_users_controller.md -------------------------------------------------------------------------------- /backend/docs/modules/users_users_module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_users_module.md -------------------------------------------------------------------------------- /backend/docs/modules/users_users_resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_users_resolver.md -------------------------------------------------------------------------------- /backend/docs/modules/users_users_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/docs/modules/users_users_service.md -------------------------------------------------------------------------------- /backend/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/nest-cli.json -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/app.module.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/auth.module.ts -------------------------------------------------------------------------------- /backend/src/auth/controller/intra42.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/controller/intra42.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/controller/intra42.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/controller/intra42.controller.ts -------------------------------------------------------------------------------- /backend/src/auth/controller/twoFA.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/controller/twoFA.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/controller/twoFA.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/controller/twoFA.controller.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/intra42.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/intra42.guard.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/intra42.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/intra42.guard.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/jwt.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/jwt.guard.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/jwt.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/jwt.guard.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/twoFA.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/twoFA.guard.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/twoFA.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/twoFA.guard.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/wsJwt.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/wsJwt.guard.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/guard/wsJwt.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/guard/wsJwt.guard.ts -------------------------------------------------------------------------------- /backend/src/auth/service/twoFA.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/service/twoFA.service.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/service/twoFA.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/service/twoFA.service.ts -------------------------------------------------------------------------------- /backend/src/auth/strategy/intra42.strategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/strategy/intra42.strategy.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/strategy/intra42.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/strategy/intra42.strategy.ts -------------------------------------------------------------------------------- /backend/src/auth/strategy/jwt.strategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/strategy/jwt.strategy.spec.ts -------------------------------------------------------------------------------- /backend/src/auth/strategy/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/auth/strategy/jwt.strategy.ts -------------------------------------------------------------------------------- /backend/src/game/entities/game.entity.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/entities/game.entity.mock.ts -------------------------------------------------------------------------------- /backend/src/game/entities/game.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/entities/game.entity.ts -------------------------------------------------------------------------------- /backend/src/game/entities/queuedplayer.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/entities/queuedplayer.entity.ts -------------------------------------------------------------------------------- /backend/src/game/game.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.gateway.spec.ts -------------------------------------------------------------------------------- /backend/src/game/game.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.gateway.ts -------------------------------------------------------------------------------- /backend/src/game/game.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.module.ts -------------------------------------------------------------------------------- /backend/src/game/game.resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.resolver.spec.ts -------------------------------------------------------------------------------- /backend/src/game/game.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.resolver.ts -------------------------------------------------------------------------------- /backend/src/game/game.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.service.spec.ts -------------------------------------------------------------------------------- /backend/src/game/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/game.service.ts -------------------------------------------------------------------------------- /backend/src/game/queue.subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/game/queue.subscriber.ts -------------------------------------------------------------------------------- /backend/src/health/health.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/health/health.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/health/health.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/health/health.controller.ts -------------------------------------------------------------------------------- /backend/src/health/health.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/health/health.module.ts -------------------------------------------------------------------------------- /backend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/main.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel-user/channel-user.resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel-user/channel-user.resolver.spec.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel-user/channel-user.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel-user/channel-user.resolver.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel-user/channel-user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel-user/channel-user.service.spec.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel-user/channel-user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel-user/channel-user.service.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel-user/entities/channel-user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel-user/entities/channel-user.entity.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel.input.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel.resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel.resolver.spec.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel.resolver.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel.service.spec.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/channel.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/channel.service.ts -------------------------------------------------------------------------------- /backend/src/prc/channel/entities/channel.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/channel/entities/channel.entity.ts -------------------------------------------------------------------------------- /backend/src/prc/message/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/message/message.ts -------------------------------------------------------------------------------- /backend/src/prc/prc.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/prc.gateway.spec.ts -------------------------------------------------------------------------------- /backend/src/prc/prc.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/prc.gateway.ts -------------------------------------------------------------------------------- /backend/src/prc/prc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/prc/prc.module.ts -------------------------------------------------------------------------------- /backend/src/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/schema.gql -------------------------------------------------------------------------------- /backend/src/tools/ExceptionFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/tools/ExceptionFilter.ts -------------------------------------------------------------------------------- /backend/src/tools/UserFromWs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/tools/UserFromWs.ts -------------------------------------------------------------------------------- /backend/src/tools/memdb.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/tools/memdb.mock.ts -------------------------------------------------------------------------------- /backend/src/tools/memdbv2.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/tools/memdbv2.mock.ts -------------------------------------------------------------------------------- /backend/src/users/decorator/current-jwt-payload.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/decorator/current-jwt-payload.decorator.ts -------------------------------------------------------------------------------- /backend/src/users/decorator/current-user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/decorator/current-user.decorator.ts -------------------------------------------------------------------------------- /backend/src/users/decorator/user-pipe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/decorator/user-pipe.service.ts -------------------------------------------------------------------------------- /backend/src/users/dto/create-user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/dto/create-user.input.ts -------------------------------------------------------------------------------- /backend/src/users/dto/update-blocking.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/dto/update-blocking.input.ts -------------------------------------------------------------------------------- /backend/src/users/dto/update-equipped-items.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/dto/update-equipped-items.input.ts -------------------------------------------------------------------------------- /backend/src/users/dto/update-friendship.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/dto/update-friendship.input.ts -------------------------------------------------------------------------------- /backend/src/users/dto/update-gamerequest.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/dto/update-gamerequest.input.ts -------------------------------------------------------------------------------- /backend/src/users/dto/update-username.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/dto/update-username.input.ts -------------------------------------------------------------------------------- /backend/src/users/entities/item.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/entities/item.entity.ts -------------------------------------------------------------------------------- /backend/src/users/entities/user.entity.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/entities/user.entity.mock.ts -------------------------------------------------------------------------------- /backend/src/users/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/entities/user.entity.ts -------------------------------------------------------------------------------- /backend/src/users/users.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.controller.ts -------------------------------------------------------------------------------- /backend/src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.module.ts -------------------------------------------------------------------------------- /backend/src/users/users.resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.resolver.spec.ts -------------------------------------------------------------------------------- /backend/src/users/users.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.resolver.ts -------------------------------------------------------------------------------- /backend/src/users/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.service.spec.ts -------------------------------------------------------------------------------- /backend/src/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/src/users/users.service.ts -------------------------------------------------------------------------------- /backend/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /backend/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/test/jest-e2e.json -------------------------------------------------------------------------------- /backend/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/tsconfig.build.json -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/docker-compose.prod.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/example.env -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/nginx.site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/nginx.site.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/public/christmas.png -------------------------------------------------------------------------------- /frontend/public/pongking_boi_trans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/public/pongking_boi_trans.svg -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/assets/ColdHot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/ColdHot.png -------------------------------------------------------------------------------- /frontend/src/assets/OGPong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/OGPong.png -------------------------------------------------------------------------------- /frontend/src/assets/PongKingBanner2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/PongKingBanner2D.png -------------------------------------------------------------------------------- /frontend/src/assets/PongKingBanner3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/PongKingBanner3D.png -------------------------------------------------------------------------------- /frontend/src/assets/ball_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/ball_white.png -------------------------------------------------------------------------------- /frontend/src/assets/christmas_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/christmas_banner.png -------------------------------------------------------------------------------- /frontend/src/assets/even-sexier-guy-001-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/even-sexier-guy-001-modified.png -------------------------------------------------------------------------------- /frontend/src/assets/frosty_bg_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/frosty_bg_frame.png -------------------------------------------------------------------------------- /frontend/src/assets/frosty_bg_frame_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/frosty_bg_frame_16_9.png -------------------------------------------------------------------------------- /frontend/src/assets/magnifier-dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/magnifier-dirty.png -------------------------------------------------------------------------------- /frontend/src/assets/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/magnifier.png -------------------------------------------------------------------------------- /frontend/src/assets/magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/magnifier.svg -------------------------------------------------------------------------------- /frontend/src/assets/org_game_bg_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/org_game_bg_16_9.png -------------------------------------------------------------------------------- /frontend/src/assets/paddle_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/paddle_white.png -------------------------------------------------------------------------------- /frontend/src/assets/pen-dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pen-dirty.png -------------------------------------------------------------------------------- /frontend/src/assets/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pen.png -------------------------------------------------------------------------------- /frontend/src/assets/pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pong.png -------------------------------------------------------------------------------- /frontend/src/assets/pongking_boi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pongking_boi.svg -------------------------------------------------------------------------------- /frontend/src/assets/pongking_boi_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pongking_boi_bronze.png -------------------------------------------------------------------------------- /frontend/src/assets/pongking_boi_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pongking_boi_empty.png -------------------------------------------------------------------------------- /frontend/src/assets/pongking_boi_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pongking_boi_gold.png -------------------------------------------------------------------------------- /frontend/src/assets/pongking_boi_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/pongking_boi_silver.png -------------------------------------------------------------------------------- /frontend/src/assets/sexiest-guy-001-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/sexiest-guy-001-modified.png -------------------------------------------------------------------------------- /frontend/src/assets/sexy-guy-001-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/sexy-guy-001-modified.png -------------------------------------------------------------------------------- /frontend/src/assets/star_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/star_bronze.png -------------------------------------------------------------------------------- /frontend/src/assets/star_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/star_gold.png -------------------------------------------------------------------------------- /frontend/src/assets/star_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/star_silver.png -------------------------------------------------------------------------------- /frontend/src/assets/xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/assets/xmas.png -------------------------------------------------------------------------------- /frontend/src/components/chat/channels/ChildChannelComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/channels/ChildChannelComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/channels/ModalChannelComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/channels/ModalChannelComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/channels/ParentChannelsComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/channels/ParentChannelsComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/chat/ParentChatComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/chat/ParentChatComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/options/ChildOptionsPeopleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/options/ChildOptionsPeopleComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/options/ModalBanUserComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/options/ModalBanUserComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/options/ModalMuteUserComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/options/ModalMuteUserComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/options/ModalUpdateAdminComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/options/ModalUpdateAdminComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/options/ModalUpdatePasswordComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/options/ModalUpdatePasswordComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/options/ParentOptionsComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/options/ParentOptionsComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/peoples/ChildPeopleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/peoples/ChildPeopleComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/peoples/ParentPeoplesComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/peoples/ParentPeoplesComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/requests/ChildRequestComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/requests/ChildRequestComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/requests/FriendRequestComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/requests/FriendRequestComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/requests/GameRequestComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/requests/GameRequestComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/chat/requests/ParentRequestsComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/chat/requests/ParentRequestsComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/game/EndScreenComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/game/EndScreenComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/game/GamePeopleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/game/GamePeopleComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/game/PongComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/game/PongComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/game/QueueComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/game/QueueComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/game/ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/game/ball.ts -------------------------------------------------------------------------------- /frontend/src/components/game/paddle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/game/paddle.ts -------------------------------------------------------------------------------- /frontend/src/components/globalUse/DropDownComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/globalUse/DropDownComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/globalUse/ModalComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/globalUse/ModalComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/globalUse/NavbarComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/globalUse/NavbarComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/globalUse/RoundPictureComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/globalUse/RoundPictureComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/globalUse/TwoFAInputComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/globalUse/TwoFAInputComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/globalUse/UserPlayedGameComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/globalUse/UserPlayedGameComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/landingview/CategoryComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/landingview/CategoryComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/landingview/CategorySearchComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/landingview/CategorySearchComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/leaderboard/ChildMedalComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/leaderboard/ChildMedalComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/leaderboard/ChildPlayerComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/leaderboard/ChildPlayerComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/leaderboard/ParentLeaderboardComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/leaderboard/ParentLeaderboardComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/aboutMe/AboutMeComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/aboutMe/AboutMeComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/achievement/ChildAchievementComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/achievement/ChildAchievementComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/achievement/ParentAchievementsComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/achievement/ParentAchievementsComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/history/ParentHistoryComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/history/ParentHistoryComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/profile/Enable2FAComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/profile/Enable2FAComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/profile/ModalChangePictureComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/profile/ModalChangePictureComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/profile/ModalChangeUsernameComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/profile/ModalChangeUsernameComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/profile/profile/ProfileComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/profile/profile/ProfileComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/skinShop/ParentSkinShopComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/skinShop/ParentSkinShopComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/skinShop/PayPalButtonComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/skinShop/PayPalButtonComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/stream/ChildStreamComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/stream/ChildStreamComponent.vue -------------------------------------------------------------------------------- /frontend/src/components/stream/SearchResultComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/components/stream/SearchResultComponent.vue -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/plugin/de.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/de.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/en.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/en.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/es.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/es.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/fr.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/fr.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/i18n.ts -------------------------------------------------------------------------------- /frontend/src/plugin/it.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/it.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/pl.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/pl.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/ro.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/ro.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/ru.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/ru.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/tmp.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/tmp.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/tr.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/tr.translation.ts -------------------------------------------------------------------------------- /frontend/src/plugin/uk.translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/plugin/uk.translation.ts -------------------------------------------------------------------------------- /frontend/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/router/index.ts -------------------------------------------------------------------------------- /frontend/src/service/ChannelService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/service/ChannelService.ts -------------------------------------------------------------------------------- /frontend/src/service/ChannelUserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/service/ChannelUserService.ts -------------------------------------------------------------------------------- /frontend/src/service/GameService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/service/GameService.ts -------------------------------------------------------------------------------- /frontend/src/service/GraphQLService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/service/GraphQLService.ts -------------------------------------------------------------------------------- /frontend/src/service/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/service/UserService.ts -------------------------------------------------------------------------------- /frontend/src/service/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/service/socket.ts -------------------------------------------------------------------------------- /frontend/src/store/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/store/error.ts -------------------------------------------------------------------------------- /frontend/src/store/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/store/message.ts -------------------------------------------------------------------------------- /frontend/src/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/store/user.ts -------------------------------------------------------------------------------- /frontend/src/views/ChatView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/ChatView.vue -------------------------------------------------------------------------------- /frontend/src/views/LandingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/LandingView.vue -------------------------------------------------------------------------------- /frontend/src/views/LeaderboardView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/LeaderboardView.vue -------------------------------------------------------------------------------- /frontend/src/views/LoginView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/LoginView.vue -------------------------------------------------------------------------------- /frontend/src/views/PageNotFoundView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/PageNotFoundView.vue -------------------------------------------------------------------------------- /frontend/src/views/PongView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/PongView.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfileView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/ProfileView.vue -------------------------------------------------------------------------------- /frontend/src/views/ReplayView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/ReplayView.vue -------------------------------------------------------------------------------- /frontend/src/views/SkinView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/SkinView.vue -------------------------------------------------------------------------------- /frontend/src/views/StreamView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/src/views/StreamView.vue -------------------------------------------------------------------------------- /frontend/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/tsconfig.config.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /tools/devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/tools/devcontainer/Dockerfile -------------------------------------------------------------------------------- /tools/devcontainer/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GQDeltex/ft_transcendence/HEAD/tools/devcontainer/entrypoint.sh --------------------------------------------------------------------------------