├── .gitignore ├── README.md ├── in development ├── Data │ ├── back │ │ └── back │ │ │ ├── .eslintrc.js │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── README.md │ │ │ ├── database.config.ts │ │ │ ├── nest-cli.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.ts │ │ │ ├── authenticator │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── authenticator.controller.ts │ │ │ │ ├── authenticator.module.ts │ │ │ │ ├── authenticator.service.ts │ │ │ │ ├── dto │ │ │ │ │ └── factor-confirm.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── Token.entity.ts │ │ │ │ ├── fortytwo.strategy.ts │ │ │ │ ├── jwt.strategy.ts │ │ │ │ ├── jwtauth.guard.ts │ │ │ │ ├── socket.guard.ts │ │ │ │ └── thisisa.guard.ts │ │ │ ├── chat │ │ │ │ ├── chat.controller.ts │ │ │ │ ├── chat.gateway.ts │ │ │ │ ├── chat.module.ts │ │ │ │ ├── chat.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── CreateMessage.dto.ts │ │ │ │ │ ├── SwapOwner.dto.ts │ │ │ │ │ ├── createAdmin.dto.ts │ │ │ │ │ ├── createChatroom.dto.ts │ │ │ │ │ ├── createMember.dto.ts │ │ │ │ │ └── updateChatroom.dto.ts │ │ │ │ └── entities │ │ │ │ │ ├── Messages.entity.ts │ │ │ │ │ ├── chat.entity.ts │ │ │ │ │ └── membership.entity.ts │ │ │ ├── class-validator.d.ts │ │ │ ├── envirenment.ts │ │ │ ├── filters │ │ │ │ └── global-exception.filter.ts │ │ │ ├── friendship │ │ │ │ ├── dto │ │ │ │ │ └── create-friendship.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── friendship.entity.ts │ │ │ │ ├── friendship.controller.ts │ │ │ │ ├── friendship.module.ts │ │ │ │ ├── friendship.service.spec.ts │ │ │ │ ├── friendship.service.ts │ │ │ │ ├── friendship │ │ │ │ │ ├── friendship.gateway.spec.ts │ │ │ │ │ └── friendship.gateway.ts │ │ │ │ └── uservalidating │ │ │ │ │ └── uservalidating.pipe.ts │ │ │ ├── game │ │ │ │ ├── GameInstance.ts │ │ │ │ ├── PositionState.ts │ │ │ │ ├── game.gateway.spec.ts │ │ │ │ ├── game.gateway.ts │ │ │ │ ├── game.module.ts │ │ │ │ ├── game.service.spec.ts │ │ │ │ ├── game.service.ts │ │ │ │ ├── position-state.ts │ │ │ │ └── statistics │ │ │ │ │ └── entities │ │ │ │ │ └── statistics.entity.ts │ │ │ ├── main.ts │ │ │ ├── match │ │ │ │ ├── dto │ │ │ │ │ ├── create-match.dto.ts │ │ │ │ │ └── update-match.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── match.entity.ts │ │ │ │ ├── match.controller.spec.ts │ │ │ │ ├── match.controller.ts │ │ │ │ ├── match.module.ts │ │ │ │ ├── match.service.spec.ts │ │ │ │ └── match.service.ts │ │ │ └── user │ │ │ │ ├── current_status │ │ │ │ └── current_status.gateway.ts │ │ │ │ ├── dto │ │ │ │ └── create-user.dto.ts │ │ │ │ ├── entities │ │ │ │ └── user.entity.ts │ │ │ │ ├── user.controller.ts │ │ │ │ ├── user.module.ts │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ │ ├── test │ │ │ ├── app.e2e-spec.ts │ │ │ └── jest-e2e.json │ │ │ ├── tsconfig.build.json │ │ │ ├── tsconfig.json │ │ │ └── upload │ │ │ └── avatars │ │ │ └── .gitkeep │ └── front │ │ └── front │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── app-body │ │ │ │ ├── app-body.component.html │ │ │ │ ├── app-body.component.scss │ │ │ │ ├── app-body.component.spec.ts │ │ │ │ └── app-body.component.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── chat │ │ │ │ ├── channels │ │ │ │ │ ├── channels.component.html │ │ │ │ │ ├── channels.component.scss │ │ │ │ │ ├── channels.component.spec.ts │ │ │ │ │ └── channels.component.ts │ │ │ │ ├── chat-content │ │ │ │ │ ├── chat-content.component.html │ │ │ │ │ ├── chat-content.component.scss │ │ │ │ │ ├── chat-content.component.spec.ts │ │ │ │ │ └── chat-content.component.ts │ │ │ │ ├── chat-info │ │ │ │ │ ├── chat-info.component.html │ │ │ │ │ ├── chat-info.component.scss │ │ │ │ │ ├── chat-info.component.spec.ts │ │ │ │ │ ├── chat-info.component.ts │ │ │ │ │ └── part-chat │ │ │ │ │ │ ├── part-chat.component.html │ │ │ │ │ │ ├── part-chat.component.scss │ │ │ │ │ │ ├── part-chat.component.spec.ts │ │ │ │ │ │ └── part-chat.component.ts │ │ │ │ ├── chat.component.html │ │ │ │ ├── chat.component.scss │ │ │ │ ├── chat.component.spec.ts │ │ │ │ ├── chat.component.ts │ │ │ │ ├── chat.service.ts │ │ │ │ ├── dm-access.guard.spec.ts │ │ │ │ ├── dm-access.guard.ts │ │ │ │ ├── dms │ │ │ │ │ ├── dms.component.html │ │ │ │ │ ├── dms.component.scss │ │ │ │ │ └── dms.component.ts │ │ │ │ ├── messages-mdl │ │ │ │ │ ├── messages-mdl.component.html │ │ │ │ │ ├── messages-mdl.component.scss │ │ │ │ │ ├── messages-mdl.component.spec.ts │ │ │ │ │ └── messages-mdl.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── message.component.html │ │ │ │ │ ├── message.component.scss │ │ │ │ │ └── message.component.ts │ │ │ │ ├── no-access.guard.spec.ts │ │ │ │ ├── no-access.guard.ts │ │ │ │ └── send-msg │ │ │ │ │ ├── send-msg.component.html │ │ │ │ │ ├── send-msg.component.scss │ │ │ │ │ ├── send-msg.component.spec.ts │ │ │ │ │ └── send-msg.component.ts │ │ │ ├── config-channel │ │ │ │ ├── config-channel.component.html │ │ │ │ ├── config-channel.component.scss │ │ │ │ └── config-channel.component.ts │ │ │ ├── create-channel │ │ │ │ ├── create-channel.component.html │ │ │ │ ├── create-channel.component.scss │ │ │ │ ├── create-channel.component.spec.ts │ │ │ │ └── create-channel.component.ts │ │ │ ├── httpfail.interceptor.ts │ │ │ ├── invite │ │ │ │ ├── invite-lines │ │ │ │ │ ├── invite-lines.component.html │ │ │ │ │ ├── invite-lines.component.scss │ │ │ │ │ ├── invite-lines.component.spec.ts │ │ │ │ │ └── invite-lines.component.ts │ │ │ │ ├── invite.component.html │ │ │ │ ├── invite.component.scss │ │ │ │ ├── invite.component.spec.ts │ │ │ │ └── invite.component.ts │ │ │ ├── joining-channel │ │ │ │ ├── invited-friend │ │ │ │ │ ├── invited-friend.component.html │ │ │ │ │ ├── invited-friend.component.scss │ │ │ │ │ ├── invited-friend.component.spec.ts │ │ │ │ │ └── invited-friend.component.ts │ │ │ │ ├── joining-channel.component.html │ │ │ │ ├── joining-channel.component.scss │ │ │ │ └── joining-channel.component.ts │ │ │ ├── leaderbord │ │ │ │ ├── leader-bord-row │ │ │ │ │ ├── leader-bord-row.component.html │ │ │ │ │ ├── leader-bord-row.component.scss │ │ │ │ │ ├── leader-bord-row.component.spec.ts │ │ │ │ │ └── leader-bord-row.component.ts │ │ │ │ ├── leaderbord.component.html │ │ │ │ ├── leaderbord.component.scss │ │ │ │ ├── leaderbord.component.spec.ts │ │ │ │ └── leaderbord.component.ts │ │ │ ├── login │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── guards │ │ │ │ │ ├── auth.guard.ts │ │ │ │ │ └── two-fac.guard.ts │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.ts │ │ │ │ └── two-factory │ │ │ │ │ ├── two-factory.component.html │ │ │ │ │ ├── two-factory.component.scss │ │ │ │ │ ├── two-factory.component.spec.ts │ │ │ │ │ └── two-factory.component.ts │ │ │ ├── notification.service.ts │ │ │ ├── page-not-found │ │ │ │ ├── page-not-found.component.html │ │ │ │ ├── page-not-found.component.scss │ │ │ │ ├── page-not-found.component.spec.ts │ │ │ │ └── page-not-found.component.ts │ │ │ ├── play │ │ │ │ ├── about-games.service.ts │ │ │ │ ├── game │ │ │ │ │ ├── game.component.html │ │ │ │ │ ├── game.component.scss │ │ │ │ │ ├── game.component.spec.ts │ │ │ │ │ ├── game.component.ts │ │ │ │ │ ├── game.module.ts │ │ │ │ │ ├── game.scene.ts │ │ │ │ │ ├── game.service.spec.ts │ │ │ │ │ ├── game.service.ts │ │ │ │ │ ├── isgaming.guard.spec.ts │ │ │ │ │ ├── isgaming.guard.ts │ │ │ │ │ └── position.state.ts │ │ │ │ ├── play-withfr │ │ │ │ │ ├── play-withfr.component.html │ │ │ │ │ ├── play-withfr.component.scss │ │ │ │ │ ├── play-withfr.component.spec.ts │ │ │ │ │ └── play-withfr.component.ts │ │ │ │ ├── play.component.html │ │ │ │ ├── play.component.scss │ │ │ │ ├── play.component.spec.ts │ │ │ │ └── play.component.ts │ │ │ ├── popup-to-be-sure │ │ │ │ ├── popup-to-be-sure.component.html │ │ │ │ ├── popup-to-be-sure.component.scss │ │ │ │ └── popup-to-be-sure.component.ts │ │ │ ├── profile │ │ │ │ ├── card-blocked │ │ │ │ │ ├── card-blocked.component.html │ │ │ │ │ ├── card-blocked.component.scss │ │ │ │ │ └── card-blocked.component.ts │ │ │ │ ├── card-friends │ │ │ │ │ ├── card-friends.component.html │ │ │ │ │ ├── card-friends.component.scss │ │ │ │ │ └── card-friends.component.ts │ │ │ │ ├── card-request │ │ │ │ │ ├── card-request.component.html │ │ │ │ │ ├── card-request.component.scss │ │ │ │ │ └── card-request.component.ts │ │ │ │ ├── card-user-statistics │ │ │ │ │ ├── card-user-statistics.component.html │ │ │ │ │ ├── card-user-statistics.component.scss │ │ │ │ │ ├── card-user-statistics.component.spec.ts │ │ │ │ │ └── card-user-statistics.component.ts │ │ │ │ ├── friendship.service.ts │ │ │ │ ├── popup │ │ │ │ │ ├── popup.component.html │ │ │ │ │ ├── popup.component.scss │ │ │ │ │ ├── popup.component.spec.ts │ │ │ │ │ └── popup.component.ts │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.scss │ │ │ │ ├── profile.component.ts │ │ │ │ ├── profile.service.ts │ │ │ │ ├── settings │ │ │ │ │ ├── activatetwo │ │ │ │ │ │ ├── activatetwo.component.html │ │ │ │ │ │ ├── activatetwo.component.scss │ │ │ │ │ │ └── activatetwo.component.ts │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ ├── settings.component.spec.ts │ │ │ │ │ └── settings.component.ts │ │ │ │ └── user-history-raw │ │ │ │ │ ├── user-history-raw.component.html │ │ │ │ │ ├── user-history-raw.component.scss │ │ │ │ │ └── user-history-raw.component.ts │ │ │ └── status.service.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── 42LogoLogin.svg │ │ │ ├── AddFriend.svg │ │ │ ├── MatchsIcon.svg │ │ │ ├── MessageProfile.svg │ │ │ ├── RankIcon.svg │ │ │ ├── ScoresIcon.svg │ │ │ ├── WinsIcon.svg │ │ │ ├── asset │ │ │ │ ├── ball.png │ │ │ │ ├── blue │ │ │ │ │ └── background.png │ │ │ │ ├── green │ │ │ │ │ └── background.png │ │ │ │ ├── line.png │ │ │ │ ├── logo.svg │ │ │ │ ├── paddle.png │ │ │ │ ├── white │ │ │ │ │ ├── background.png │ │ │ │ │ ├── ball.png │ │ │ │ │ ├── line.png │ │ │ │ │ └── paddle.png │ │ │ │ └── win.png │ │ │ ├── block.svg │ │ │ ├── blueThemeSet.svg │ │ │ ├── closeImg.svg │ │ │ ├── cover.svg │ │ │ ├── firstRank.svg │ │ │ ├── greenThemeSet.svg │ │ │ ├── icons │ │ │ │ ├── 3points.svg │ │ │ │ ├── Dribbble-Light-Preview.svg │ │ │ │ ├── addfriend.svg │ │ │ │ ├── block.svg │ │ │ │ ├── camerawow.svg │ │ │ │ ├── channels.svg │ │ │ │ ├── checkfriend.svg │ │ │ │ ├── closeImg.svg │ │ │ │ ├── direct.svg │ │ │ │ ├── firstRank.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── leaderboard.svg │ │ │ │ ├── message.svg │ │ │ │ ├── more.svg │ │ │ │ ├── moreone.svg │ │ │ │ ├── play.svg │ │ │ │ ├── rank1.svg │ │ │ │ ├── rank2.svg │ │ │ │ ├── rank3.svg │ │ │ │ ├── rank4.svg │ │ │ │ ├── rank5.svg │ │ │ │ ├── send.svg │ │ │ │ ├── viewprofile.svg │ │ │ │ └── winner.svg │ │ │ ├── img │ │ │ │ ├── pingpongimg.svg │ │ │ │ └── profile.jpeg │ │ │ ├── login.svg │ │ │ ├── profilePic.svg │ │ │ ├── secondRank.svg │ │ │ ├── star.png │ │ │ ├── theplayer.svg │ │ │ ├── thirdRank.svg │ │ │ └── whiteThemeSet.svg │ │ ├── config.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json ├── docker-compose.yml └── srcs │ ├── back │ ├── Dockerfile │ └── script.sh │ └── front │ ├── Dockerfile │ └── script.sh ├── in production ├── docker-compose.yml └── srcs │ ├── back │ ├── Dockerfile │ ├── back │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── database.config.ts │ │ ├── nest-cli.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.ts │ │ │ ├── authenticator │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── authenticator.controller.ts │ │ │ │ ├── authenticator.module.ts │ │ │ │ ├── authenticator.service.ts │ │ │ │ ├── dto │ │ │ │ │ └── factor-confirm.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── Token.entity.ts │ │ │ │ ├── fortytwo.strategy.ts │ │ │ │ ├── jwt.strategy.ts │ │ │ │ ├── jwtauth.guard.ts │ │ │ │ ├── socket.guard.ts │ │ │ │ └── thisisa.guard.ts │ │ │ ├── chat │ │ │ │ ├── chat.controller.ts │ │ │ │ ├── chat.gateway.ts │ │ │ │ ├── chat.module.ts │ │ │ │ ├── chat.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── CreateMessage.dto.ts │ │ │ │ │ ├── SwapOwner.dto.ts │ │ │ │ │ ├── createAdmin.dto.ts │ │ │ │ │ ├── createChatroom.dto.ts │ │ │ │ │ ├── createMember.dto.ts │ │ │ │ │ └── updateChatroom.dto.ts │ │ │ │ └── entities │ │ │ │ │ ├── Messages.entity.ts │ │ │ │ │ ├── chat.entity.ts │ │ │ │ │ └── membership.entity.ts │ │ │ ├── class-validator.d.ts │ │ │ ├── envirenment.ts │ │ │ ├── filters │ │ │ │ └── global-exception.filter.ts │ │ │ ├── friendship │ │ │ │ ├── dto │ │ │ │ │ └── create-friendship.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── friendship.entity.ts │ │ │ │ ├── friendship.controller.ts │ │ │ │ ├── friendship.module.ts │ │ │ │ ├── friendship.service.spec.ts │ │ │ │ ├── friendship.service.ts │ │ │ │ ├── friendship │ │ │ │ │ ├── friendship.gateway.spec.ts │ │ │ │ │ └── friendship.gateway.ts │ │ │ │ └── uservalidating │ │ │ │ │ └── uservalidating.pipe.ts │ │ │ ├── game │ │ │ │ ├── GameInstance.ts │ │ │ │ ├── PositionState.ts │ │ │ │ ├── game.gateway.spec.ts │ │ │ │ ├── game.gateway.ts │ │ │ │ ├── game.module.ts │ │ │ │ ├── game.service.spec.ts │ │ │ │ ├── game.service.ts │ │ │ │ ├── position-state.ts │ │ │ │ └── statistics │ │ │ │ │ └── entities │ │ │ │ │ └── statistics.entity.ts │ │ │ ├── main.ts │ │ │ ├── match │ │ │ │ ├── dto │ │ │ │ │ ├── create-match.dto.ts │ │ │ │ │ └── update-match.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── match.entity.ts │ │ │ │ ├── match.controller.spec.ts │ │ │ │ ├── match.controller.ts │ │ │ │ ├── match.module.ts │ │ │ │ ├── match.service.spec.ts │ │ │ │ └── match.service.ts │ │ │ └── user │ │ │ │ ├── current_status │ │ │ │ └── current_status.gateway.ts │ │ │ │ ├── dto │ │ │ │ └── create-user.dto.ts │ │ │ │ ├── entities │ │ │ │ └── user.entity.ts │ │ │ │ ├── user.controller.ts │ │ │ │ ├── user.module.ts │ │ │ │ ├── user.service.spec.ts │ │ │ │ └── user.service.ts │ │ ├── test │ │ │ ├── app.e2e-spec.ts │ │ │ └── jest-e2e.json │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── upload │ │ │ └── avatars │ │ │ └── .gitkeep │ └── script.sh │ └── front │ ├── Dockerfile │ ├── front │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── tasks.json │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-body │ │ │ │ ├── app-body.component.html │ │ │ │ ├── app-body.component.scss │ │ │ │ ├── app-body.component.spec.ts │ │ │ │ └── app-body.component.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── chat │ │ │ │ ├── channels │ │ │ │ │ ├── channels.component.html │ │ │ │ │ ├── channels.component.scss │ │ │ │ │ ├── channels.component.spec.ts │ │ │ │ │ └── channels.component.ts │ │ │ │ ├── chat-content │ │ │ │ │ ├── chat-content.component.html │ │ │ │ │ ├── chat-content.component.scss │ │ │ │ │ ├── chat-content.component.spec.ts │ │ │ │ │ └── chat-content.component.ts │ │ │ │ ├── chat-info │ │ │ │ │ ├── chat-info.component.html │ │ │ │ │ ├── chat-info.component.scss │ │ │ │ │ ├── chat-info.component.spec.ts │ │ │ │ │ ├── chat-info.component.ts │ │ │ │ │ └── part-chat │ │ │ │ │ │ ├── part-chat.component.html │ │ │ │ │ │ ├── part-chat.component.scss │ │ │ │ │ │ ├── part-chat.component.spec.ts │ │ │ │ │ │ └── part-chat.component.ts │ │ │ │ ├── chat.component.html │ │ │ │ ├── chat.component.scss │ │ │ │ ├── chat.component.spec.ts │ │ │ │ ├── chat.component.ts │ │ │ │ ├── chat.service.ts │ │ │ │ ├── dm-access.guard.spec.ts │ │ │ │ ├── dm-access.guard.ts │ │ │ │ ├── dms │ │ │ │ │ ├── dms.component.html │ │ │ │ │ ├── dms.component.scss │ │ │ │ │ └── dms.component.ts │ │ │ │ ├── messages-mdl │ │ │ │ │ ├── messages-mdl.component.html │ │ │ │ │ ├── messages-mdl.component.scss │ │ │ │ │ ├── messages-mdl.component.spec.ts │ │ │ │ │ └── messages-mdl.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── message.component.html │ │ │ │ │ ├── message.component.scss │ │ │ │ │ └── message.component.ts │ │ │ │ ├── no-access.guard.spec.ts │ │ │ │ ├── no-access.guard.ts │ │ │ │ └── send-msg │ │ │ │ │ ├── send-msg.component.html │ │ │ │ │ ├── send-msg.component.scss │ │ │ │ │ ├── send-msg.component.spec.ts │ │ │ │ │ └── send-msg.component.ts │ │ │ ├── config-channel │ │ │ │ ├── config-channel.component.html │ │ │ │ ├── config-channel.component.scss │ │ │ │ └── config-channel.component.ts │ │ │ ├── create-channel │ │ │ │ ├── create-channel.component.html │ │ │ │ ├── create-channel.component.scss │ │ │ │ ├── create-channel.component.spec.ts │ │ │ │ └── create-channel.component.ts │ │ │ ├── httpfail.interceptor.ts │ │ │ ├── invite │ │ │ │ ├── invite-lines │ │ │ │ │ ├── invite-lines.component.html │ │ │ │ │ ├── invite-lines.component.scss │ │ │ │ │ ├── invite-lines.component.spec.ts │ │ │ │ │ └── invite-lines.component.ts │ │ │ │ ├── invite.component.html │ │ │ │ ├── invite.component.scss │ │ │ │ ├── invite.component.spec.ts │ │ │ │ └── invite.component.ts │ │ │ ├── joining-channel │ │ │ │ ├── invited-friend │ │ │ │ │ ├── invited-friend.component.html │ │ │ │ │ ├── invited-friend.component.scss │ │ │ │ │ ├── invited-friend.component.spec.ts │ │ │ │ │ └── invited-friend.component.ts │ │ │ │ ├── joining-channel.component.html │ │ │ │ ├── joining-channel.component.scss │ │ │ │ └── joining-channel.component.ts │ │ │ ├── leaderbord │ │ │ │ ├── leader-bord-row │ │ │ │ │ ├── leader-bord-row.component.html │ │ │ │ │ ├── leader-bord-row.component.scss │ │ │ │ │ ├── leader-bord-row.component.spec.ts │ │ │ │ │ └── leader-bord-row.component.ts │ │ │ │ ├── leaderbord.component.html │ │ │ │ ├── leaderbord.component.scss │ │ │ │ ├── leaderbord.component.spec.ts │ │ │ │ └── leaderbord.component.ts │ │ │ ├── login │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── guards │ │ │ │ │ ├── auth.guard.ts │ │ │ │ │ └── two-fac.guard.ts │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.ts │ │ │ │ └── two-factory │ │ │ │ │ ├── two-factory.component.html │ │ │ │ │ ├── two-factory.component.scss │ │ │ │ │ ├── two-factory.component.spec.ts │ │ │ │ │ └── two-factory.component.ts │ │ │ ├── notification.service.ts │ │ │ ├── page-not-found │ │ │ │ ├── page-not-found.component.html │ │ │ │ ├── page-not-found.component.scss │ │ │ │ ├── page-not-found.component.spec.ts │ │ │ │ └── page-not-found.component.ts │ │ │ ├── play │ │ │ │ ├── about-games.service.ts │ │ │ │ ├── game │ │ │ │ │ ├── game.component.html │ │ │ │ │ ├── game.component.scss │ │ │ │ │ ├── game.component.spec.ts │ │ │ │ │ ├── game.component.ts │ │ │ │ │ ├── game.module.ts │ │ │ │ │ ├── game.scene.ts │ │ │ │ │ ├── game.service.spec.ts │ │ │ │ │ ├── game.service.ts │ │ │ │ │ ├── isgaming.guard.spec.ts │ │ │ │ │ ├── isgaming.guard.ts │ │ │ │ │ └── position.state.ts │ │ │ │ ├── play-withfr │ │ │ │ │ ├── play-withfr.component.html │ │ │ │ │ ├── play-withfr.component.scss │ │ │ │ │ ├── play-withfr.component.spec.ts │ │ │ │ │ └── play-withfr.component.ts │ │ │ │ ├── play.component.html │ │ │ │ ├── play.component.scss │ │ │ │ ├── play.component.spec.ts │ │ │ │ └── play.component.ts │ │ │ ├── popup-to-be-sure │ │ │ │ ├── popup-to-be-sure.component.html │ │ │ │ ├── popup-to-be-sure.component.scss │ │ │ │ └── popup-to-be-sure.component.ts │ │ │ ├── profile │ │ │ │ ├── card-blocked │ │ │ │ │ ├── card-blocked.component.html │ │ │ │ │ ├── card-blocked.component.scss │ │ │ │ │ └── card-blocked.component.ts │ │ │ │ ├── card-friends │ │ │ │ │ ├── card-friends.component.html │ │ │ │ │ ├── card-friends.component.scss │ │ │ │ │ └── card-friends.component.ts │ │ │ │ ├── card-request │ │ │ │ │ ├── card-request.component.html │ │ │ │ │ ├── card-request.component.scss │ │ │ │ │ └── card-request.component.ts │ │ │ │ ├── card-user-statistics │ │ │ │ │ ├── card-user-statistics.component.html │ │ │ │ │ ├── card-user-statistics.component.scss │ │ │ │ │ ├── card-user-statistics.component.spec.ts │ │ │ │ │ └── card-user-statistics.component.ts │ │ │ │ ├── friendship.service.ts │ │ │ │ ├── popup │ │ │ │ │ ├── popup.component.html │ │ │ │ │ ├── popup.component.scss │ │ │ │ │ ├── popup.component.spec.ts │ │ │ │ │ └── popup.component.ts │ │ │ │ ├── profile.component.html │ │ │ │ ├── profile.component.scss │ │ │ │ ├── profile.component.ts │ │ │ │ ├── profile.service.ts │ │ │ │ ├── settings │ │ │ │ │ ├── activatetwo │ │ │ │ │ │ ├── activatetwo.component.html │ │ │ │ │ │ ├── activatetwo.component.scss │ │ │ │ │ │ └── activatetwo.component.ts │ │ │ │ │ ├── settings.component.html │ │ │ │ │ ├── settings.component.scss │ │ │ │ │ ├── settings.component.spec.ts │ │ │ │ │ └── settings.component.ts │ │ │ │ └── user-history-raw │ │ │ │ │ ├── user-history-raw.component.html │ │ │ │ │ ├── user-history-raw.component.scss │ │ │ │ │ └── user-history-raw.component.ts │ │ │ └── status.service.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── 42LogoLogin.svg │ │ │ ├── AddFriend.svg │ │ │ ├── MatchsIcon.svg │ │ │ ├── MessageProfile.svg │ │ │ ├── RankIcon.svg │ │ │ ├── ScoresIcon.svg │ │ │ ├── WinsIcon.svg │ │ │ ├── asset │ │ │ │ ├── ball.png │ │ │ │ ├── blue │ │ │ │ │ └── background.png │ │ │ │ ├── green │ │ │ │ │ └── background.png │ │ │ │ ├── line.png │ │ │ │ ├── logo.svg │ │ │ │ ├── paddle.png │ │ │ │ ├── white │ │ │ │ │ ├── background.png │ │ │ │ │ ├── ball.png │ │ │ │ │ ├── line.png │ │ │ │ │ └── paddle.png │ │ │ │ └── win.png │ │ │ ├── block.svg │ │ │ ├── blueThemeSet.svg │ │ │ ├── closeImg.svg │ │ │ ├── cover.svg │ │ │ ├── firstRank.svg │ │ │ ├── greenThemeSet.svg │ │ │ ├── icons │ │ │ │ ├── 3points.svg │ │ │ │ ├── Dribbble-Light-Preview.svg │ │ │ │ ├── addfriend.svg │ │ │ │ ├── block.svg │ │ │ │ ├── camerawow.svg │ │ │ │ ├── channels.svg │ │ │ │ ├── checkfriend.svg │ │ │ │ ├── closeImg.svg │ │ │ │ ├── direct.svg │ │ │ │ ├── firstRank.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── leaderboard.svg │ │ │ │ ├── message.svg │ │ │ │ ├── more.svg │ │ │ │ ├── moreone.svg │ │ │ │ ├── play.svg │ │ │ │ ├── rank1.svg │ │ │ │ ├── rank2.svg │ │ │ │ ├── rank3.svg │ │ │ │ ├── rank4.svg │ │ │ │ ├── rank5.svg │ │ │ │ ├── send.svg │ │ │ │ ├── viewprofile.svg │ │ │ │ └── winner.svg │ │ │ ├── img │ │ │ │ ├── pingpongimg.svg │ │ │ │ └── profile.jpeg │ │ │ ├── login.svg │ │ │ ├── profilePic.svg │ │ │ ├── secondRank.svg │ │ │ ├── star.png │ │ │ ├── theplayer.svg │ │ │ ├── thirdRank.svg │ │ │ └── whiteThemeSet.svg │ │ ├── config.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ └── styles.scss │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json │ └── script.sh └── screenshots ├── 2FA.png ├── 404 page.png ├── Chat - Channels (1).png ├── Chat - Channels (2).png ├── Chat - Channels.png ├── Chat - DM.png ├── Game.png ├── Invite - Channels.png ├── Profile (1).png ├── Profile (2).png ├── Profile (3).png ├── Profile (4).png ├── Profile.png ├── Settings.png ├── box list profile.png ├── ft_transcendence web application.zip └── load page.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/README.md -------------------------------------------------------------------------------- /in development/Data/back/back/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/.eslintrc.js -------------------------------------------------------------------------------- /in development/Data/back/back/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/.gitignore -------------------------------------------------------------------------------- /in development/Data/back/back/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/.prettierrc -------------------------------------------------------------------------------- /in development/Data/back/back/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/README.md -------------------------------------------------------------------------------- /in development/Data/back/back/database.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/database.config.ts -------------------------------------------------------------------------------- /in development/Data/back/back/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/nest-cli.json -------------------------------------------------------------------------------- /in development/Data/back/back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/package-lock.json -------------------------------------------------------------------------------- /in development/Data/back/back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/package.json -------------------------------------------------------------------------------- /in development/Data/back/back/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/app.controller.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/app.controller.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/app.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/app.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/auth.guard.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/authenticator.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/authenticator.controller.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/authenticator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/authenticator.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/authenticator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/authenticator.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/dto/factor-confirm.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/dto/factor-confirm.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/entities/Token.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/entities/Token.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/fortytwo.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/fortytwo.strategy.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/jwt.strategy.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/jwtauth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/jwtauth.guard.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/socket.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/socket.guard.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/authenticator/thisisa.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/authenticator/thisisa.guard.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/chat.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/chat.controller.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/chat.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/chat.gateway.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/chat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/chat.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/chat.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/dto/CreateMessage.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/dto/CreateMessage.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/dto/SwapOwner.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/dto/SwapOwner.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/dto/createAdmin.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/dto/createAdmin.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/dto/createChatroom.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/dto/createChatroom.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/dto/createMember.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/dto/createMember.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/dto/updateChatroom.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/dto/updateChatroom.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/entities/Messages.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/entities/Messages.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/entities/chat.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/entities/chat.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/chat/entities/membership.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/chat/entities/membership.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/class-validator.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'class-validator'; 2 | -------------------------------------------------------------------------------- /in development/Data/back/back/src/envirenment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/envirenment.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/filters/global-exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/filters/global-exception.filter.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/dto/create-friendship.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/dto/create-friendship.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/entities/friendship.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/entities/friendship.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/friendship.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/friendship.controller.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/friendship.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/friendship.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/friendship.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/friendship.service.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/friendship.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/friendship.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/friendship/friendship.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/friendship/friendship.gateway.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/friendship/friendship.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/friendship/friendship.gateway.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/friendship/uservalidating/uservalidating.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/friendship/uservalidating/uservalidating.pipe.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/GameInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/GameInstance.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/PositionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/PositionState.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/game.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/game.gateway.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/game.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/game.gateway.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/game.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/game.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/game.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/game.service.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/game.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/position-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/position-state.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/game/statistics/entities/statistics.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/game/statistics/entities/statistics.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/main.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/dto/create-match.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/dto/create-match.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/dto/update-match.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/dto/update-match.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/entities/match.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/entities/match.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/match.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/match.controller.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/match.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/match.controller.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/match.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/match.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/match.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/match.service.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/match/match.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/match/match.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/current_status/current_status.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/current_status/current_status.gateway.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/dto/create-user.dto.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/entities/user.entity.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/user.controller.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/user.module.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/user.service.spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/src/user/user.service.ts -------------------------------------------------------------------------------- /in development/Data/back/back/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /in development/Data/back/back/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/test/jest-e2e.json -------------------------------------------------------------------------------- /in development/Data/back/back/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/tsconfig.build.json -------------------------------------------------------------------------------- /in development/Data/back/back/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/back/back/tsconfig.json -------------------------------------------------------------------------------- /in development/Data/back/back/upload/avatars/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /in development/Data/front/front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/.editorconfig -------------------------------------------------------------------------------- /in development/Data/front/front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/.gitignore -------------------------------------------------------------------------------- /in development/Data/front/front/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/.vscode/extensions.json -------------------------------------------------------------------------------- /in development/Data/front/front/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/.vscode/launch.json -------------------------------------------------------------------------------- /in development/Data/front/front/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/.vscode/tasks.json -------------------------------------------------------------------------------- /in development/Data/front/front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/README.md -------------------------------------------------------------------------------- /in development/Data/front/front/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/angular.json -------------------------------------------------------------------------------- /in development/Data/front/front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/package-lock.json -------------------------------------------------------------------------------- /in development/Data/front/front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/package.json -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app-body/app-body.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app-body/app-body.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app-body/app-body.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app-body/app-body.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app-body/app-body.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app-body/app-body.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app-body/app-body.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app-body/app-body.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/app.module.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/channels/channels.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/channels/channels.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/channels/channels.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/channels/channels.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/channels/channels.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/channels/channels.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/channels/channels.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/channels/channels.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-content/chat-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-content/chat-content.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-content/chat-content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-content/chat-content.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-content/chat-content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-content/chat-content.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-content/chat-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-content/chat-content.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/chat-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/chat-info.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/chat-info.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/chat-info.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/chat-info.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/chat-info.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/chat-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/chat-info.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat-info/part-chat/part-chat.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/chat.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/dm-access.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/dm-access.guard.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/dm-access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/dm-access.guard.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/dms/dms.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/dms/dms.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/dms/dms.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/dms/dms.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/dms/dms.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/dms/dms.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages-mdl/messages-mdl.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages/message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages/message.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages/message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages/message.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/messages/message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/messages/message.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/no-access.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/no-access.guard.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/no-access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/no-access.guard.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/send-msg/send-msg.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/send-msg/send-msg.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/send-msg/send-msg.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/send-msg/send-msg.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/send-msg/send-msg.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/send-msg/send-msg.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/chat/send-msg/send-msg.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/chat/send-msg/send-msg.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/config-channel/config-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/config-channel/config-channel.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/config-channel/config-channel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/config-channel/config-channel.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/config-channel/config-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/config-channel/config-channel.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/create-channel/create-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/create-channel/create-channel.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/create-channel/create-channel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/create-channel/create-channel.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/create-channel/create-channel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/create-channel/create-channel.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/create-channel/create-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/create-channel/create-channel.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/httpfail.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/httpfail.interceptor.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite-lines/invite-lines.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/invite/invite.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/invite/invite.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/invited-friend/invited-friend.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/joining-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/joining-channel.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/joining-channel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/joining-channel.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/joining-channel/joining-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/joining-channel/joining-channel.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leaderbord.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leaderbord.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leaderbord.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leaderbord.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leaderbord.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leaderbord.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/leaderbord/leaderbord.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/leaderbord/leaderbord.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/auth.service.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/auth.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/guards/auth.guard.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/guards/two-fac.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/guards/two-fac.guard.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/login.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/login.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/login.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/two-factory/two-factory.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/two-factory/two-factory.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/two-factory/two-factory.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/two-factory/two-factory.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/two-factory/two-factory.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/two-factory/two-factory.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/login/two-factory/two-factory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/login/two-factory/two-factory.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/notification.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/page-not-found/page-not-found.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/page-not-found/page-not-found.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/page-not-found/page-not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/page-not-found/page-not-found.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/about-games.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/about-games.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.module.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.scene.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.service.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/game.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/isgaming.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/isgaming.guard.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/isgaming.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/isgaming.guard.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/game/position.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/game/position.state.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play-withfr/play-withfr.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/play/play.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/play/play.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-blocked/card-blocked.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-blocked/card-blocked.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-blocked/card-blocked.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-blocked/card-blocked.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-blocked/card-blocked.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-blocked/card-blocked.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-friends/card-friends.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-friends/card-friends.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-friends/card-friends.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-friends/card-friends.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-friends/card-friends.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-friends/card-friends.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-request/card-request.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-request/card-request.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-request/card-request.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-request/card-request.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-request/card-request.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-request/card-request.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/friendship.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/friendship.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/popup/popup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/popup/popup.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/popup/popup.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/popup/popup.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/popup/popup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/popup/popup.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/popup/popup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/popup/popup.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/profile.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/profile.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/profile.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/profile.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/activatetwo/activatetwo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/activatetwo/activatetwo.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/activatetwo/activatetwo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/activatetwo/activatetwo.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/activatetwo/activatetwo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/activatetwo/activatetwo.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/settings.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/settings.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/settings/settings.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/user-history-raw/user-history-raw.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/user-history-raw/user-history-raw.component.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/user-history-raw/user-history-raw.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/user-history-raw/user-history-raw.component.scss -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/profile/user-history-raw/user-history-raw.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/profile/user-history-raw/user-history-raw.component.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/app/status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/app/status.service.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/42LogoLogin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/42LogoLogin.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/AddFriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/AddFriend.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/MatchsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/MatchsIcon.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/MessageProfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/MessageProfile.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/RankIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/RankIcon.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/ScoresIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/ScoresIcon.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/WinsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/WinsIcon.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/ball.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/blue/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/blue/background.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/green/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/green/background.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/line.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/logo.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/paddle.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/white/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/white/background.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/white/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/white/ball.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/white/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/white/line.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/white/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/white/paddle.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/asset/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/asset/win.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/block.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/blueThemeSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/blueThemeSet.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/closeImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/closeImg.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/cover.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/firstRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/firstRank.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/greenThemeSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/greenThemeSet.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/3points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/3points.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/Dribbble-Light-Preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/Dribbble-Light-Preview.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/addfriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/addfriend.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/block.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/camerawow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/camerawow.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/channels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/channels.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/checkfriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/checkfriend.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/closeImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/closeImg.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/direct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/direct.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/firstRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/firstRank.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/hashtag.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/icon.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/leaderboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/leaderboard.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/message.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/more.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/moreone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/moreone.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/play.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/rank1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/rank1.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/rank2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/rank2.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/rank3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/rank3.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/rank4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/rank4.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/rank5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/rank5.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/send.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/viewprofile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/viewprofile.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/icons/winner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/icons/winner.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/img/pingpongimg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/img/pingpongimg.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/img/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/img/profile.jpeg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/login.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/profilePic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/profilePic.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/secondRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/secondRank.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/star.png -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/theplayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/theplayer.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/thirdRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/thirdRank.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/assets/whiteThemeSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/assets/whiteThemeSet.svg -------------------------------------------------------------------------------- /in development/Data/front/front/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/config.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/index.html -------------------------------------------------------------------------------- /in development/Data/front/front/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/main.ts -------------------------------------------------------------------------------- /in development/Data/front/front/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/src/styles.scss -------------------------------------------------------------------------------- /in development/Data/front/front/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/tsconfig.app.json -------------------------------------------------------------------------------- /in development/Data/front/front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/tsconfig.json -------------------------------------------------------------------------------- /in development/Data/front/front/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/Data/front/front/tsconfig.spec.json -------------------------------------------------------------------------------- /in development/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/docker-compose.yml -------------------------------------------------------------------------------- /in development/srcs/back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/srcs/back/Dockerfile -------------------------------------------------------------------------------- /in development/srcs/back/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/srcs/back/script.sh -------------------------------------------------------------------------------- /in development/srcs/front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/srcs/front/Dockerfile -------------------------------------------------------------------------------- /in development/srcs/front/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in development/srcs/front/script.sh -------------------------------------------------------------------------------- /in production/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/docker-compose.yml -------------------------------------------------------------------------------- /in production/srcs/back/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/Dockerfile -------------------------------------------------------------------------------- /in production/srcs/back/back/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/.eslintrc.js -------------------------------------------------------------------------------- /in production/srcs/back/back/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/.gitignore -------------------------------------------------------------------------------- /in production/srcs/back/back/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/.prettierrc -------------------------------------------------------------------------------- /in production/srcs/back/back/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/README.md -------------------------------------------------------------------------------- /in production/srcs/back/back/database.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/database.config.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/nest-cli.json -------------------------------------------------------------------------------- /in production/srcs/back/back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/package-lock.json -------------------------------------------------------------------------------- /in production/srcs/back/back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/package.json -------------------------------------------------------------------------------- /in production/srcs/back/back/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/app.controller.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/app.controller.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/app.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/app.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/auth.guard.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/authenticator.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/authenticator.controller.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/authenticator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/authenticator.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/authenticator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/authenticator.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/dto/factor-confirm.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/dto/factor-confirm.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/entities/Token.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/entities/Token.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/fortytwo.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/fortytwo.strategy.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/jwt.strategy.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/jwtauth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/jwtauth.guard.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/socket.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/socket.guard.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/authenticator/thisisa.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/authenticator/thisisa.guard.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/chat.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/chat.controller.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/chat.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/chat.gateway.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/chat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/chat.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/chat.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/dto/CreateMessage.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/dto/CreateMessage.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/dto/SwapOwner.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/dto/SwapOwner.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/dto/createAdmin.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/dto/createAdmin.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/dto/createChatroom.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/dto/createChatroom.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/dto/createMember.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/dto/createMember.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/dto/updateChatroom.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/dto/updateChatroom.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/entities/Messages.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/entities/Messages.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/entities/chat.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/entities/chat.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/chat/entities/membership.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/chat/entities/membership.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/class-validator.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'class-validator'; 2 | -------------------------------------------------------------------------------- /in production/srcs/back/back/src/envirenment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/envirenment.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/filters/global-exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/filters/global-exception.filter.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/dto/create-friendship.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/dto/create-friendship.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/entities/friendship.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/entities/friendship.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/friendship.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/friendship.controller.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/friendship.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/friendship.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/friendship.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/friendship.service.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/friendship.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/friendship.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/friendship/friendship.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/friendship/friendship.gateway.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/friendship/friendship.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/friendship/friendship.gateway.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/friendship/uservalidating/uservalidating.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/friendship/uservalidating/uservalidating.pipe.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/GameInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/GameInstance.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/PositionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/PositionState.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/game.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/game.gateway.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/game.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/game.gateway.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/game.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/game.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/game.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/game.service.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/game.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/position-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/position-state.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/game/statistics/entities/statistics.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/game/statistics/entities/statistics.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/main.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/dto/create-match.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/dto/create-match.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/dto/update-match.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/dto/update-match.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/entities/match.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/entities/match.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/match.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/match.controller.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/match.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/match.controller.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/match.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/match.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/match.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/match.service.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/match/match.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/match/match.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/current_status/current_status.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/current_status/current_status.gateway.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/dto/create-user.dto.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/entities/user.entity.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/user.controller.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/user.module.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/user.service.spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/src/user/user.service.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /in production/srcs/back/back/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/test/jest-e2e.json -------------------------------------------------------------------------------- /in production/srcs/back/back/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/tsconfig.build.json -------------------------------------------------------------------------------- /in production/srcs/back/back/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/back/tsconfig.json -------------------------------------------------------------------------------- /in production/srcs/back/back/upload/avatars/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /in production/srcs/back/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/back/script.sh -------------------------------------------------------------------------------- /in production/srcs/front/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/Dockerfile -------------------------------------------------------------------------------- /in production/srcs/front/front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/.editorconfig -------------------------------------------------------------------------------- /in production/srcs/front/front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/.gitignore -------------------------------------------------------------------------------- /in production/srcs/front/front/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/.vscode/extensions.json -------------------------------------------------------------------------------- /in production/srcs/front/front/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/.vscode/launch.json -------------------------------------------------------------------------------- /in production/srcs/front/front/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/.vscode/tasks.json -------------------------------------------------------------------------------- /in production/srcs/front/front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/README.md -------------------------------------------------------------------------------- /in production/srcs/front/front/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/angular.json -------------------------------------------------------------------------------- /in production/srcs/front/front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/package-lock.json -------------------------------------------------------------------------------- /in production/srcs/front/front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/package.json -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app-body/app-body.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app-body/app-body.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app-body/app-body.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app-body/app-body.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app-body/app-body.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app-body/app-body.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app-body/app-body.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app-body/app-body.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/app.module.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/channels/channels.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/channels/channels.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/channels/channels.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/channels/channels.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/channels/channels.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/channels/channels.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/channels/channels.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/channels/channels.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-content/chat-content.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/chat-info.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat-info/part-chat/part-chat.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/chat.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/dm-access.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/dm-access.guard.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/dm-access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/dm-access.guard.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/dms/dms.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/dms/dms.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/dms/dms.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/dms/dms.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/dms/dms.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/dms/dms.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages-mdl/messages-mdl.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages/message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages/message.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages/message.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages/message.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/messages/message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/messages/message.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/no-access.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/no-access.guard.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/no-access.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/no-access.guard.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/chat/send-msg/send-msg.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/config-channel/config-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/config-channel/config-channel.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/config-channel/config-channel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/config-channel/config-channel.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/config-channel/config-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/config-channel/config-channel.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/create-channel/create-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/create-channel/create-channel.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/create-channel/create-channel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/create-channel/create-channel.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/create-channel/create-channel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/create-channel/create-channel.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/create-channel/create-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/create-channel/create-channel.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/httpfail.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/httpfail.interceptor.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite-lines/invite-lines.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/invite/invite.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/invite/invite.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/invited-friend/invited-friend.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/joining-channel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/joining-channel.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/joining-channel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/joining-channel.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/joining-channel/joining-channel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/joining-channel/joining-channel.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leader-bord-row/leader-bord-row.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leaderbord.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leaderbord.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leaderbord.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leaderbord.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leaderbord.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leaderbord.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/leaderbord/leaderbord.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/leaderbord/leaderbord.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/auth.service.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/auth.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/guards/auth.guard.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/guards/two-fac.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/guards/two-fac.guard.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/login.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/login.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/login.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/two-factory/two-factory.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/two-factory/two-factory.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/two-factory/two-factory.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/two-factory/two-factory.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/two-factory/two-factory.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/two-factory/two-factory.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/login/two-factory/two-factory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/login/two-factory/two-factory.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/notification.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/page-not-found/page-not-found.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/page-not-found/page-not-found.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/page-not-found/page-not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/page-not-found/page-not-found.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/about-games.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/about-games.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.module.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.scene.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.service.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/game.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/isgaming.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/isgaming.guard.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/isgaming.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/isgaming.guard.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/game/position.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/game/position.state.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play-withfr/play-withfr.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/play/play.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/play/play.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/popup-to-be-sure/popup-to-be-sure.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-blocked/card-blocked.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-blocked/card-blocked.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-blocked/card-blocked.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-blocked/card-blocked.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-blocked/card-blocked.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-blocked/card-blocked.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-friends/card-friends.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-friends/card-friends.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-friends/card-friends.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-friends/card-friends.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-friends/card-friends.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-friends/card-friends.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-request/card-request.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-request/card-request.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-request/card-request.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-request/card-request.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-request/card-request.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-request/card-request.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/card-user-statistics/card-user-statistics.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/friendship.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/friendship.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/popup/popup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/popup/popup.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/popup/popup.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/popup/popup.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/popup/popup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/popup/popup.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/popup/popup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/popup/popup.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/profile.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/profile.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/profile.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/profile.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/profile.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/activatetwo/activatetwo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/activatetwo/activatetwo.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/activatetwo/activatetwo.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/activatetwo/activatetwo.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/activatetwo/activatetwo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/activatetwo/activatetwo.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/settings.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/settings.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/settings/settings.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/user-history-raw/user-history-raw.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/user-history-raw/user-history-raw.component.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/user-history-raw/user-history-raw.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/user-history-raw/user-history-raw.component.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/profile/user-history-raw/user-history-raw.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/profile/user-history-raw/user-history-raw.component.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/app/status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/app/status.service.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/42LogoLogin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/42LogoLogin.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/AddFriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/AddFriend.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/MatchsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/MatchsIcon.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/MessageProfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/MessageProfile.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/RankIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/RankIcon.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/ScoresIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/ScoresIcon.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/WinsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/WinsIcon.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/ball.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/blue/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/blue/background.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/green/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/green/background.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/line.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/logo.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/paddle.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/white/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/white/background.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/white/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/white/ball.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/white/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/white/line.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/white/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/white/paddle.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/asset/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/asset/win.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/block.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/blueThemeSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/blueThemeSet.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/closeImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/closeImg.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/cover.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/firstRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/firstRank.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/greenThemeSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/greenThemeSet.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/3points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/3points.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/Dribbble-Light-Preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/Dribbble-Light-Preview.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/addfriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/addfriend.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/block.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/camerawow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/camerawow.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/channels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/channels.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/checkfriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/checkfriend.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/closeImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/closeImg.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/direct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/direct.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/firstRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/firstRank.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/hashtag.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/icon.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/leaderboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/leaderboard.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/message.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/more.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/moreone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/moreone.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/play.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/rank1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/rank1.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/rank2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/rank2.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/rank3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/rank3.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/rank4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/rank4.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/rank5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/rank5.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/send.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/viewprofile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/viewprofile.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/icons/winner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/icons/winner.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/img/pingpongimg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/img/pingpongimg.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/img/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/img/profile.jpeg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/login.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/profilePic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/profilePic.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/secondRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/secondRank.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/star.png -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/theplayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/theplayer.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/thirdRank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/thirdRank.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/assets/whiteThemeSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/assets/whiteThemeSet.svg -------------------------------------------------------------------------------- /in production/srcs/front/front/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/config.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/favicon.ico -------------------------------------------------------------------------------- /in production/srcs/front/front/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/index.html -------------------------------------------------------------------------------- /in production/srcs/front/front/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/main.ts -------------------------------------------------------------------------------- /in production/srcs/front/front/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/src/styles.scss -------------------------------------------------------------------------------- /in production/srcs/front/front/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/tsconfig.app.json -------------------------------------------------------------------------------- /in production/srcs/front/front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/tsconfig.json -------------------------------------------------------------------------------- /in production/srcs/front/front/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/front/tsconfig.spec.json -------------------------------------------------------------------------------- /in production/srcs/front/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/in production/srcs/front/script.sh -------------------------------------------------------------------------------- /screenshots/2FA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/2FA.png -------------------------------------------------------------------------------- /screenshots/404 page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/404 page.png -------------------------------------------------------------------------------- /screenshots/Chat - Channels (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Chat - Channels (1).png -------------------------------------------------------------------------------- /screenshots/Chat - Channels (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Chat - Channels (2).png -------------------------------------------------------------------------------- /screenshots/Chat - Channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Chat - Channels.png -------------------------------------------------------------------------------- /screenshots/Chat - DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Chat - DM.png -------------------------------------------------------------------------------- /screenshots/Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Game.png -------------------------------------------------------------------------------- /screenshots/Invite - Channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Invite - Channels.png -------------------------------------------------------------------------------- /screenshots/Profile (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Profile (1).png -------------------------------------------------------------------------------- /screenshots/Profile (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Profile (2).png -------------------------------------------------------------------------------- /screenshots/Profile (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Profile (3).png -------------------------------------------------------------------------------- /screenshots/Profile (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Profile (4).png -------------------------------------------------------------------------------- /screenshots/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Profile.png -------------------------------------------------------------------------------- /screenshots/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/Settings.png -------------------------------------------------------------------------------- /screenshots/box list profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/box list profile.png -------------------------------------------------------------------------------- /screenshots/ft_transcendence web application.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/ft_transcendence web application.zip -------------------------------------------------------------------------------- /screenshots/load page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVBLOOD/ft_transcendence/HEAD/screenshots/load page.png --------------------------------------------------------------------------------