├── README.md ├── api ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Makefile ├── docker-compose.yml ├── migrations │ ├── 1569935733841-InitTopFlop.ts │ ├── 1570008008858-AddCompagnyToInputs.ts │ └── 1570607325020-CompagnyVoucher.ts ├── nest-cli.json ├── ormconfig.json.dist ├── package-lock.json ├── package.json ├── server.config.js ├── src │ ├── Application │ │ ├── Adapter │ │ │ ├── ICodeGenerator.ts │ │ │ ├── ICommandBusAdapter.ts │ │ │ ├── IEncryptionAdapter.ts │ │ │ └── IQueryBusAdapter.ts │ │ ├── Auth │ │ │ ├── Command │ │ │ │ ├── LoginCommand.ts │ │ │ │ ├── LoginCommandHandler.ts │ │ │ │ ├── RegisterCommand.ts │ │ │ │ └── RegisterCommandHandler.ts │ │ │ └── View │ │ │ │ └── AuthenticatedView.ts │ │ ├── Common │ │ │ └── Pagination.ts │ │ ├── Compagny │ │ │ ├── Command │ │ │ │ ├── CreateCompagnyCommand.ts │ │ │ │ ├── CreateCompagnyCommandHandler.ts │ │ │ │ ├── JoinCompagnyCommand.ts │ │ │ │ ├── JoinCompagnyCommandHandler.ts │ │ │ │ ├── LeaveCompagnyCommand.ts │ │ │ │ └── LeaveCompagnyCommandHandler.ts │ │ │ ├── Query │ │ │ │ ├── GetCompagnyByIdQuery.ts │ │ │ │ ├── GetCompagnyByIdQueryHandler.ts │ │ │ │ ├── GetCompaniesByUserQuery.ts │ │ │ │ └── GetCompaniesByUserQueryHandler.ts │ │ │ └── View │ │ │ │ └── CompagnyView.ts │ │ ├── ICommand.ts │ │ ├── IQuery.ts │ │ ├── Input │ │ │ ├── Command │ │ │ │ ├── CreateInputCommand.ts │ │ │ │ ├── CreateInputCommandHandler.ts │ │ │ │ ├── CreateQuoteCommand.ts │ │ │ │ ├── CreateQuoteCommandHandler.ts │ │ │ │ ├── DeleteQuoteCommand.ts │ │ │ │ └── DeleteQuoteCommandHandler.ts │ │ │ ├── Query │ │ │ │ ├── GetInputsByCompagnyQuery.ts │ │ │ │ ├── GetInputsByCompagnyQueryHandler.ts │ │ │ │ ├── GetQuotesByCompagnyQuery.ts │ │ │ │ ├── GetQuotesByCompagnyQueryHandler.ts │ │ │ │ ├── GetQuotesByIdQuery.ts │ │ │ │ └── GetQuotesByIdQueryHandler.ts │ │ │ └── View │ │ │ │ ├── InputListView.ts │ │ │ │ ├── InputView.ts │ │ │ │ └── QuoteView.ts │ │ └── User │ │ │ ├── Command │ │ │ ├── ChangeCurrentCompagnyCommand.ts │ │ │ ├── ChangeCurrentCompagnyCommandHandler.ts │ │ │ ├── CreateUserCommand.ts │ │ │ ├── CreateUserCommandHandler.ts │ │ │ ├── CreateUserCompagnyCommand.ts │ │ │ ├── CreateUserCompagnyCommandHandler.ts │ │ │ ├── DeleteUserCompagnyCommand.ts │ │ │ ├── DeleteUserCompagnyCommandHandler.ts │ │ │ ├── UpdateMeCommand.ts │ │ │ ├── UpdateMeCommandHandler.ts │ │ │ ├── UpdatePasswordCommand.ts │ │ │ └── UpdatePasswordCommandHandler.ts │ │ │ ├── Query │ │ │ ├── GetUserByApiTokenQuery.ts │ │ │ ├── GetUserByApiTokenQueryHandler.ts │ │ │ ├── GetUserByIdQuery.ts │ │ │ ├── GetUserByIdQueryHandler.ts │ │ │ ├── GetUsersByCompagnyQuery.ts │ │ │ └── GetUsersByCompagnyQueryHandler.ts │ │ │ └── View │ │ │ ├── UpdatedMeView.ts │ │ │ ├── UserView.ts │ │ │ └── UsernameView.ts │ ├── Domain │ │ ├── Compagny │ │ │ ├── Compagny.entity.ts │ │ │ └── Repository │ │ │ │ └── ICompagnyRepository.ts │ │ ├── Input │ │ │ ├── Input.entity.ts │ │ │ ├── Quote.entity.ts │ │ │ └── Repository │ │ │ │ ├── IInputRepository.ts │ │ │ │ └── IQuoteRepository.ts │ │ └── User │ │ │ ├── CanUserRegister.ts │ │ │ ├── IsAdminOfCompagny.ts │ │ │ ├── IsMemberOfCompagny.ts │ │ │ ├── Repository │ │ │ ├── IUserCompagnyRepository.ts │ │ │ └── IUserRepository.ts │ │ │ ├── User.entity.ts │ │ │ └── UserCompagny.entity.ts │ ├── Infrastructure │ │ ├── Adapter │ │ │ ├── CodeGeneratorAdapter.ts │ │ │ ├── CommandBusAdapter.ts │ │ │ ├── EncryptionAdapter.ts │ │ │ └── QueryBusAdapter.ts │ │ ├── Auth │ │ │ ├── AuthModule.ts │ │ │ ├── Controller │ │ │ │ ├── LoginController.ts │ │ │ │ └── RegisterController.ts │ │ │ └── Strategy │ │ │ │ └── TokenStrategy.ts │ │ ├── Common │ │ │ ├── BusModule.ts │ │ │ └── Dto │ │ │ │ └── PaginationDto.ts │ │ ├── Compagny │ │ │ ├── CompagnyModule.ts │ │ │ ├── Controller │ │ │ │ ├── CreateCompagnyController.ts │ │ │ │ ├── GetCompaniesByUserController.ts │ │ │ │ ├── JoinCompagnyController.ts │ │ │ │ └── LeaveCompagnyController.ts │ │ │ └── Repository │ │ │ │ └── CompagnyRepository.ts │ │ ├── Input │ │ │ ├── Controller │ │ │ │ ├── CreateInputController.ts │ │ │ │ ├── CreateQuoteController.ts │ │ │ │ ├── DeleteQuoteController.ts │ │ │ │ ├── Dto │ │ │ │ │ ├── InputFiltersDto.ts │ │ │ │ │ └── QuoteFiltersDto.ts │ │ │ │ ├── GetInputsByCompagnyController.ts │ │ │ │ ├── GetQuoteController.ts │ │ │ │ └── GetQuotesByCompagnyController.ts │ │ │ ├── InputModule.ts │ │ │ └── Repository │ │ │ │ ├── InputRepository.ts │ │ │ │ └── QuoteRepository.ts │ │ ├── User │ │ │ ├── Controller │ │ │ │ ├── ChangeCurrentCompagnyController.ts │ │ │ │ ├── CreateUserController.ts │ │ │ │ ├── DeleteUserCompagnyController.ts │ │ │ │ ├── Dto │ │ │ │ │ ├── CurrentCompagnyDto.ts │ │ │ │ │ └── UserFiltersDto.ts │ │ │ │ ├── GetUsersByCompagnyController.ts │ │ │ │ ├── UpdateMeController.ts │ │ │ │ └── UpdatePasswordController.ts │ │ │ ├── Decorator │ │ │ │ └── LoggedUser.ts │ │ │ ├── Repository │ │ │ │ ├── UserCompagnyRepository.ts │ │ │ │ └── UserRepository.ts │ │ │ └── UserModule.ts │ │ └── bus.module.ts │ ├── app.module.ts │ └── main.ts ├── tsconfig.build.json ├── tsconfig.json └── tslint.json └── client ├── .env.development ├── .env.production ├── .gitignore ├── .prettierrc ├── Makefile ├── package-lock.json ├── package.json ├── public ├── css │ ├── style.css │ ├── tabler-charts.css │ ├── tabler-charts.css.map │ ├── tabler-charts.min.css │ ├── tabler-charts.min.css.map │ ├── tabler-charts.min.min.css │ ├── tabler-charts.min.min.css.map │ ├── tabler-flags.css │ ├── tabler-flags.css.map │ ├── tabler-flags.min.css │ ├── tabler-flags.min.css.map │ ├── tabler-flags.min.min.css │ ├── tabler-flags.min.min.css.map │ ├── tabler.css │ ├── tabler.css.map │ ├── tabler.min.css │ ├── tabler.min.css.map │ ├── tabler.min.min.css │ └── tabler.min.min.css.map ├── favicon.ico ├── fonts │ └── tabler-webfont │ │ ├── tabler-webfont.eot │ │ ├── tabler-webfont.svg │ │ ├── tabler-webfont.ttf │ │ ├── tabler-webfont.woff │ │ └── tabler-webfont.woff2 ├── img │ ├── 1_flop.svg │ ├── 1_top.svg │ ├── 2_flop.svg │ ├── 2_top.svg │ ├── 3_flop.svg │ ├── 3_top.svg │ └── logo.svg ├── index.html ├── js │ ├── boostrap.js │ ├── demo.js │ ├── demo.js.map │ ├── demo.min.js │ ├── demo.min.js.map │ ├── jquery.js │ ├── tabler-charts.js │ ├── tabler-charts.js.map │ ├── tabler-charts.min.js │ ├── tabler-charts.min.js.map │ ├── tabler.js │ ├── tabler.js.map │ ├── tabler.min.js │ └── tabler.min.js.map ├── manifest.json └── robots.txt ├── src ├── i18n │ ├── fr.json │ └── index.js ├── index.js ├── modules │ ├── auth │ │ ├── actions │ │ │ ├── authentication.js │ │ │ └── registration.js │ │ ├── components │ │ │ └── form │ │ │ │ ├── AuthenticationForm.js │ │ │ │ ├── RegistrationForm.js │ │ │ │ └── validators │ │ │ │ ├── authentication.js │ │ │ │ └── registration.js │ │ ├── constants │ │ │ ├── authentication.js │ │ │ └── registration.js │ │ ├── middlewares │ │ │ ├── authentication.js │ │ │ └── registration.js │ │ ├── reducers │ │ │ ├── authentication.js │ │ │ ├── index.js │ │ │ └── registration.js │ │ └── views │ │ │ ├── AuthenticationView.js │ │ │ └── RegistrationView.js │ ├── common │ │ ├── components │ │ │ ├── Form │ │ │ │ ├── RadioInput.js │ │ │ │ └── TextInput.js │ │ │ ├── Layout │ │ │ │ ├── Footer.js │ │ │ │ ├── Header.js │ │ │ │ ├── Layout.js │ │ │ │ └── Nav.js │ │ │ ├── LoadingComponent.js │ │ │ ├── Pagination.js │ │ │ ├── SecuredRoute.js │ │ │ ├── ServerErrors.js │ │ │ └── SuccessMessage.js │ │ └── views │ │ │ └── HomeView.js │ ├── compagny │ │ ├── actions │ │ │ ├── add.js │ │ │ ├── join.js │ │ │ ├── leave.js │ │ │ └── list.js │ │ ├── components │ │ │ └── form │ │ │ │ ├── CompagnyForm.js │ │ │ │ ├── CompagnyRow.js │ │ │ │ ├── JoinForm.js │ │ │ │ └── validators │ │ │ │ ├── compagny.js │ │ │ │ └── join.js │ │ ├── constants │ │ │ ├── add.js │ │ │ ├── join.js │ │ │ ├── leave.js │ │ │ └── list.js │ │ ├── middlewares │ │ │ ├── add.js │ │ │ ├── join.js │ │ │ ├── leave.js │ │ │ └── list.js │ │ ├── models │ │ │ └── Compagny.js │ │ ├── reducers │ │ │ ├── add.js │ │ │ ├── index.js │ │ │ ├── join.js │ │ │ ├── leave.js │ │ │ └── list.js │ │ └── views │ │ │ ├── AddCompagnyView.js │ │ │ └── ListCompagnyView.js │ ├── input │ │ ├── actions │ │ │ ├── add.js │ │ │ └── list.js │ │ ├── components │ │ │ └── InputRow.js │ │ ├── constants │ │ │ ├── add.js │ │ │ └── list.js │ │ ├── middlewares │ │ │ ├── add.js │ │ │ └── list.js │ │ ├── reducers │ │ │ ├── add.js │ │ │ ├── index.js │ │ │ └── list.js │ │ └── views │ │ │ └── ListInputsView.js │ ├── quote │ │ ├── actions │ │ │ ├── add.js │ │ │ ├── delete.js │ │ │ ├── list.js │ │ │ └── show.js │ │ ├── components │ │ │ ├── QuoteRow.js │ │ │ └── form │ │ │ │ ├── QuoteForm.js │ │ │ │ └── validators │ │ │ │ └── quote.js │ │ ├── constants │ │ │ ├── add.js │ │ │ ├── delete.js │ │ │ ├── list.js │ │ │ └── show.js │ │ ├── middlewares │ │ │ ├── add.js │ │ │ ├── delete.js │ │ │ ├── list.js │ │ │ └── show.js │ │ ├── reducers │ │ │ ├── add.js │ │ │ ├── delete.js │ │ │ ├── index.js │ │ │ ├── list.js │ │ │ └── show.js │ │ └── views │ │ │ ├── AddQuoteView.js │ │ │ ├── ListQuoteView.js │ │ │ └── QuoteDetailView.js │ └── user │ │ ├── actions │ │ ├── add.js │ │ ├── currentCompagny.js │ │ ├── delete.js │ │ ├── edit.js │ │ ├── list.js │ │ └── password.js │ │ ├── components │ │ ├── Search.js │ │ ├── UserRow.js │ │ └── form │ │ │ ├── PasswordForm.js │ │ │ ├── ProfileForm.js │ │ │ ├── UserForm.js │ │ │ └── validators │ │ │ ├── password.js │ │ │ ├── profile.js │ │ │ └── user.js │ │ ├── constants │ │ ├── add.js │ │ ├── currentCompagny.js │ │ ├── delete.js │ │ ├── edit.js │ │ ├── list.js │ │ └── password.js │ │ ├── middlewares │ │ ├── add.js │ │ ├── currentCompagny.js │ │ ├── delete.js │ │ ├── edit.js │ │ ├── list.js │ │ └── password.js │ │ ├── models │ │ └── LoggedUser.js │ │ ├── reducers │ │ ├── add.js │ │ ├── currentCompagny.js │ │ ├── delete.js │ │ ├── edit.js │ │ ├── index.js │ │ ├── list.js │ │ └── password.js │ │ └── views │ │ ├── AddUserView.js │ │ ├── EditUserView.js │ │ └── ListUsersView.js ├── routes │ └── index.js ├── serviceWorker.js ├── store │ ├── index.js │ └── reducers.js └── utils │ ├── axios.js │ ├── errorFormater.js │ └── tokenStorage.js └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/README.md -------------------------------------------------------------------------------- /api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/.eslintrc.js -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/.prettierrc -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/docker-compose.yml -------------------------------------------------------------------------------- /api/migrations/1569935733841-InitTopFlop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/migrations/1569935733841-InitTopFlop.ts -------------------------------------------------------------------------------- /api/migrations/1570008008858-AddCompagnyToInputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/migrations/1570008008858-AddCompagnyToInputs.ts -------------------------------------------------------------------------------- /api/migrations/1570607325020-CompagnyVoucher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/migrations/1570607325020-CompagnyVoucher.ts -------------------------------------------------------------------------------- /api/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/nest-cli.json -------------------------------------------------------------------------------- /api/ormconfig.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/ormconfig.json.dist -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/package.json -------------------------------------------------------------------------------- /api/server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/server.config.js -------------------------------------------------------------------------------- /api/src/Application/Adapter/ICodeGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Adapter/ICodeGenerator.ts -------------------------------------------------------------------------------- /api/src/Application/Adapter/ICommandBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Adapter/ICommandBusAdapter.ts -------------------------------------------------------------------------------- /api/src/Application/Adapter/IEncryptionAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Adapter/IEncryptionAdapter.ts -------------------------------------------------------------------------------- /api/src/Application/Adapter/IQueryBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Adapter/IQueryBusAdapter.ts -------------------------------------------------------------------------------- /api/src/Application/Auth/Command/LoginCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Auth/Command/LoginCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Auth/Command/LoginCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Auth/Command/LoginCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Auth/Command/RegisterCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Auth/Command/RegisterCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Auth/Command/RegisterCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Auth/Command/RegisterCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Auth/View/AuthenticatedView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Auth/View/AuthenticatedView.ts -------------------------------------------------------------------------------- /api/src/Application/Common/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Common/Pagination.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Command/CreateCompagnyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Command/CreateCompagnyCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Command/CreateCompagnyCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Command/CreateCompagnyCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Command/JoinCompagnyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Command/JoinCompagnyCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Command/JoinCompagnyCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Command/JoinCompagnyCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Command/LeaveCompagnyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Command/LeaveCompagnyCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Command/LeaveCompagnyCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Command/LeaveCompagnyCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Query/GetCompagnyByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Query/GetCompagnyByIdQuery.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Query/GetCompagnyByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Query/GetCompagnyByIdQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Query/GetCompaniesByUserQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Query/GetCompaniesByUserQuery.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/Query/GetCompaniesByUserQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/Query/GetCompaniesByUserQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Compagny/View/CompagnyView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Compagny/View/CompagnyView.ts -------------------------------------------------------------------------------- /api/src/Application/ICommand.ts: -------------------------------------------------------------------------------- 1 | export interface ICommand {} 2 | -------------------------------------------------------------------------------- /api/src/Application/IQuery.ts: -------------------------------------------------------------------------------- 1 | export interface IQuery {} 2 | -------------------------------------------------------------------------------- /api/src/Application/Input/Command/CreateInputCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Command/CreateInputCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Command/CreateInputCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Command/CreateInputCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Command/CreateQuoteCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Command/CreateQuoteCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Command/CreateQuoteCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Command/CreateQuoteCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Command/DeleteQuoteCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Command/DeleteQuoteCommand.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Command/DeleteQuoteCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Command/DeleteQuoteCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Query/GetInputsByCompagnyQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Query/GetInputsByCompagnyQuery.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Query/GetInputsByCompagnyQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Query/GetInputsByCompagnyQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Query/GetQuotesByCompagnyQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Query/GetQuotesByCompagnyQuery.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Query/GetQuotesByCompagnyQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Query/GetQuotesByCompagnyQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Query/GetQuotesByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Query/GetQuotesByIdQuery.ts -------------------------------------------------------------------------------- /api/src/Application/Input/Query/GetQuotesByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/Query/GetQuotesByIdQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/Input/View/InputListView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/View/InputListView.ts -------------------------------------------------------------------------------- /api/src/Application/Input/View/InputView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/View/InputView.ts -------------------------------------------------------------------------------- /api/src/Application/Input/View/QuoteView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/Input/View/QuoteView.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/ChangeCurrentCompagnyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/ChangeCurrentCompagnyCommand.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/ChangeCurrentCompagnyCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/ChangeCurrentCompagnyCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/CreateUserCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/CreateUserCommand.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/CreateUserCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/CreateUserCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/CreateUserCompagnyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/CreateUserCompagnyCommand.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/CreateUserCompagnyCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/CreateUserCompagnyCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/DeleteUserCompagnyCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/DeleteUserCompagnyCommand.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/DeleteUserCompagnyCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/DeleteUserCompagnyCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/UpdateMeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/UpdateMeCommand.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/UpdateMeCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/UpdateMeCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/UpdatePasswordCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/UpdatePasswordCommand.ts -------------------------------------------------------------------------------- /api/src/Application/User/Command/UpdatePasswordCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Command/UpdatePasswordCommandHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Query/GetUserByApiTokenQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Query/GetUserByApiTokenQuery.ts -------------------------------------------------------------------------------- /api/src/Application/User/Query/GetUserByApiTokenQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Query/GetUserByApiTokenQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Query/GetUserByIdQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Query/GetUserByIdQuery.ts -------------------------------------------------------------------------------- /api/src/Application/User/Query/GetUserByIdQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Query/GetUserByIdQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/Query/GetUsersByCompagnyQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Query/GetUsersByCompagnyQuery.ts -------------------------------------------------------------------------------- /api/src/Application/User/Query/GetUsersByCompagnyQueryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/Query/GetUsersByCompagnyQueryHandler.ts -------------------------------------------------------------------------------- /api/src/Application/User/View/UpdatedMeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/View/UpdatedMeView.ts -------------------------------------------------------------------------------- /api/src/Application/User/View/UserView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/View/UserView.ts -------------------------------------------------------------------------------- /api/src/Application/User/View/UsernameView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Application/User/View/UsernameView.ts -------------------------------------------------------------------------------- /api/src/Domain/Compagny/Compagny.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/Compagny/Compagny.entity.ts -------------------------------------------------------------------------------- /api/src/Domain/Compagny/Repository/ICompagnyRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/Compagny/Repository/ICompagnyRepository.ts -------------------------------------------------------------------------------- /api/src/Domain/Input/Input.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/Input/Input.entity.ts -------------------------------------------------------------------------------- /api/src/Domain/Input/Quote.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/Input/Quote.entity.ts -------------------------------------------------------------------------------- /api/src/Domain/Input/Repository/IInputRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/Input/Repository/IInputRepository.ts -------------------------------------------------------------------------------- /api/src/Domain/Input/Repository/IQuoteRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/Input/Repository/IQuoteRepository.ts -------------------------------------------------------------------------------- /api/src/Domain/User/CanUserRegister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/CanUserRegister.ts -------------------------------------------------------------------------------- /api/src/Domain/User/IsAdminOfCompagny.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/IsAdminOfCompagny.ts -------------------------------------------------------------------------------- /api/src/Domain/User/IsMemberOfCompagny.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/IsMemberOfCompagny.ts -------------------------------------------------------------------------------- /api/src/Domain/User/Repository/IUserCompagnyRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/Repository/IUserCompagnyRepository.ts -------------------------------------------------------------------------------- /api/src/Domain/User/Repository/IUserRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/Repository/IUserRepository.ts -------------------------------------------------------------------------------- /api/src/Domain/User/User.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/User.entity.ts -------------------------------------------------------------------------------- /api/src/Domain/User/UserCompagny.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Domain/User/UserCompagny.entity.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Adapter/CodeGeneratorAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Adapter/CodeGeneratorAdapter.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Adapter/CommandBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Adapter/CommandBusAdapter.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Adapter/EncryptionAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Adapter/EncryptionAdapter.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Adapter/QueryBusAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Adapter/QueryBusAdapter.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Auth/AuthModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Auth/AuthModule.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Auth/Controller/LoginController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Auth/Controller/LoginController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Auth/Controller/RegisterController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Auth/Controller/RegisterController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Auth/Strategy/TokenStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Auth/Strategy/TokenStrategy.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Common/BusModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Common/BusModule.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Common/Dto/PaginationDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Common/Dto/PaginationDto.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Compagny/CompagnyModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Compagny/CompagnyModule.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Compagny/Controller/CreateCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Compagny/Controller/CreateCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Compagny/Controller/GetCompaniesByUserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Compagny/Controller/GetCompaniesByUserController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Compagny/Controller/JoinCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Compagny/Controller/JoinCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Compagny/Controller/LeaveCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Compagny/Controller/LeaveCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Compagny/Repository/CompagnyRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Compagny/Repository/CompagnyRepository.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/CreateInputController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/CreateInputController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/CreateQuoteController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/CreateQuoteController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/DeleteQuoteController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/DeleteQuoteController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/Dto/InputFiltersDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/Dto/InputFiltersDto.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/Dto/QuoteFiltersDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/Dto/QuoteFiltersDto.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/GetInputsByCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/GetInputsByCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/GetQuoteController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/GetQuoteController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Controller/GetQuotesByCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Controller/GetQuotesByCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/InputModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/InputModule.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Repository/InputRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Repository/InputRepository.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/Input/Repository/QuoteRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/Input/Repository/QuoteRepository.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/ChangeCurrentCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/ChangeCurrentCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/CreateUserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/CreateUserController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/DeleteUserCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/DeleteUserCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/Dto/CurrentCompagnyDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/Dto/CurrentCompagnyDto.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/Dto/UserFiltersDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/Dto/UserFiltersDto.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/GetUsersByCompagnyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/GetUsersByCompagnyController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/UpdateMeController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/UpdateMeController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Controller/UpdatePasswordController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Controller/UpdatePasswordController.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Decorator/LoggedUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Decorator/LoggedUser.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Repository/UserCompagnyRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Repository/UserCompagnyRepository.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/Repository/UserRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/Repository/UserRepository.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/User/UserModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/User/UserModule.ts -------------------------------------------------------------------------------- /api/src/Infrastructure/bus.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/Infrastructure/bus.module.ts -------------------------------------------------------------------------------- /api/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/app.module.ts -------------------------------------------------------------------------------- /api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/src/main.ts -------------------------------------------------------------------------------- /api/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/tsconfig.build.json -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /api/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/api/tslint.json -------------------------------------------------------------------------------- /client/.env.development: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL=http://localhost:3000 2 | -------------------------------------------------------------------------------- /client/.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL=https://api.topflop.app 2 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/.prettierrc -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- 1 | start: 2 | PORT=3001 yarn start 3 | -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/style.css -------------------------------------------------------------------------------- /client/public/css/tabler-charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-charts.css -------------------------------------------------------------------------------- /client/public/css/tabler-charts.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-charts.css.map -------------------------------------------------------------------------------- /client/public/css/tabler-charts.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-charts.min.css -------------------------------------------------------------------------------- /client/public/css/tabler-charts.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-charts.min.css.map -------------------------------------------------------------------------------- /client/public/css/tabler-charts.min.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-charts.min.min.css -------------------------------------------------------------------------------- /client/public/css/tabler-charts.min.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-charts.min.min.css.map -------------------------------------------------------------------------------- /client/public/css/tabler-flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-flags.css -------------------------------------------------------------------------------- /client/public/css/tabler-flags.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-flags.css.map -------------------------------------------------------------------------------- /client/public/css/tabler-flags.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-flags.min.css -------------------------------------------------------------------------------- /client/public/css/tabler-flags.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-flags.min.css.map -------------------------------------------------------------------------------- /client/public/css/tabler-flags.min.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-flags.min.min.css -------------------------------------------------------------------------------- /client/public/css/tabler-flags.min.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler-flags.min.min.css.map -------------------------------------------------------------------------------- /client/public/css/tabler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler.css -------------------------------------------------------------------------------- /client/public/css/tabler.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler.css.map -------------------------------------------------------------------------------- /client/public/css/tabler.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler.min.css -------------------------------------------------------------------------------- /client/public/css/tabler.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler.min.css.map -------------------------------------------------------------------------------- /client/public/css/tabler.min.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler.min.min.css -------------------------------------------------------------------------------- /client/public/css/tabler.min.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/css/tabler.min.min.css.map -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/fonts/tabler-webfont/tabler-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/fonts/tabler-webfont/tabler-webfont.eot -------------------------------------------------------------------------------- /client/public/fonts/tabler-webfont/tabler-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/fonts/tabler-webfont/tabler-webfont.svg -------------------------------------------------------------------------------- /client/public/fonts/tabler-webfont/tabler-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/fonts/tabler-webfont/tabler-webfont.ttf -------------------------------------------------------------------------------- /client/public/fonts/tabler-webfont/tabler-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/fonts/tabler-webfont/tabler-webfont.woff -------------------------------------------------------------------------------- /client/public/fonts/tabler-webfont/tabler-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/fonts/tabler-webfont/tabler-webfont.woff2 -------------------------------------------------------------------------------- /client/public/img/1_flop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/1_flop.svg -------------------------------------------------------------------------------- /client/public/img/1_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/1_top.svg -------------------------------------------------------------------------------- /client/public/img/2_flop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/2_flop.svg -------------------------------------------------------------------------------- /client/public/img/2_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/2_top.svg -------------------------------------------------------------------------------- /client/public/img/3_flop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/3_flop.svg -------------------------------------------------------------------------------- /client/public/img/3_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/3_top.svg -------------------------------------------------------------------------------- /client/public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/img/logo.svg -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/js/boostrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/boostrap.js -------------------------------------------------------------------------------- /client/public/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/demo.js -------------------------------------------------------------------------------- /client/public/js/demo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/demo.js.map -------------------------------------------------------------------------------- /client/public/js/demo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/demo.min.js -------------------------------------------------------------------------------- /client/public/js/demo.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/demo.min.js.map -------------------------------------------------------------------------------- /client/public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/jquery.js -------------------------------------------------------------------------------- /client/public/js/tabler-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler-charts.js -------------------------------------------------------------------------------- /client/public/js/tabler-charts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler-charts.js.map -------------------------------------------------------------------------------- /client/public/js/tabler-charts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler-charts.min.js -------------------------------------------------------------------------------- /client/public/js/tabler-charts.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler-charts.min.js.map -------------------------------------------------------------------------------- /client/public/js/tabler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler.js -------------------------------------------------------------------------------- /client/public/js/tabler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler.js.map -------------------------------------------------------------------------------- /client/public/js/tabler.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler.min.js -------------------------------------------------------------------------------- /client/public/js/tabler.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/js/tabler.min.js.map -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/i18n/fr.json -------------------------------------------------------------------------------- /client/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/i18n/index.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/modules/auth/actions/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/actions/authentication.js -------------------------------------------------------------------------------- /client/src/modules/auth/actions/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/actions/registration.js -------------------------------------------------------------------------------- /client/src/modules/auth/components/form/AuthenticationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/components/form/AuthenticationForm.js -------------------------------------------------------------------------------- /client/src/modules/auth/components/form/RegistrationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/components/form/RegistrationForm.js -------------------------------------------------------------------------------- /client/src/modules/auth/components/form/validators/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/components/form/validators/authentication.js -------------------------------------------------------------------------------- /client/src/modules/auth/components/form/validators/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/components/form/validators/registration.js -------------------------------------------------------------------------------- /client/src/modules/auth/constants/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/constants/authentication.js -------------------------------------------------------------------------------- /client/src/modules/auth/constants/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/constants/registration.js -------------------------------------------------------------------------------- /client/src/modules/auth/middlewares/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/middlewares/authentication.js -------------------------------------------------------------------------------- /client/src/modules/auth/middlewares/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/middlewares/registration.js -------------------------------------------------------------------------------- /client/src/modules/auth/reducers/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/reducers/authentication.js -------------------------------------------------------------------------------- /client/src/modules/auth/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/reducers/index.js -------------------------------------------------------------------------------- /client/src/modules/auth/reducers/registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/reducers/registration.js -------------------------------------------------------------------------------- /client/src/modules/auth/views/AuthenticationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/views/AuthenticationView.js -------------------------------------------------------------------------------- /client/src/modules/auth/views/RegistrationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/auth/views/RegistrationView.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Form/RadioInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Form/RadioInput.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Form/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Form/TextInput.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Layout/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Layout/Footer.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Layout/Header.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Layout/Layout.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Layout/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Layout/Nav.js -------------------------------------------------------------------------------- /client/src/modules/common/components/LoadingComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/LoadingComponent.js -------------------------------------------------------------------------------- /client/src/modules/common/components/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/Pagination.js -------------------------------------------------------------------------------- /client/src/modules/common/components/SecuredRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/SecuredRoute.js -------------------------------------------------------------------------------- /client/src/modules/common/components/ServerErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/ServerErrors.js -------------------------------------------------------------------------------- /client/src/modules/common/components/SuccessMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/components/SuccessMessage.js -------------------------------------------------------------------------------- /client/src/modules/common/views/HomeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/common/views/HomeView.js -------------------------------------------------------------------------------- /client/src/modules/compagny/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/actions/add.js -------------------------------------------------------------------------------- /client/src/modules/compagny/actions/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/actions/join.js -------------------------------------------------------------------------------- /client/src/modules/compagny/actions/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/actions/leave.js -------------------------------------------------------------------------------- /client/src/modules/compagny/actions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/actions/list.js -------------------------------------------------------------------------------- /client/src/modules/compagny/components/form/CompagnyForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/components/form/CompagnyForm.js -------------------------------------------------------------------------------- /client/src/modules/compagny/components/form/CompagnyRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/components/form/CompagnyRow.js -------------------------------------------------------------------------------- /client/src/modules/compagny/components/form/JoinForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/components/form/JoinForm.js -------------------------------------------------------------------------------- /client/src/modules/compagny/components/form/validators/compagny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/components/form/validators/compagny.js -------------------------------------------------------------------------------- /client/src/modules/compagny/components/form/validators/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/components/form/validators/join.js -------------------------------------------------------------------------------- /client/src/modules/compagny/constants/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/constants/add.js -------------------------------------------------------------------------------- /client/src/modules/compagny/constants/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/constants/join.js -------------------------------------------------------------------------------- /client/src/modules/compagny/constants/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/constants/leave.js -------------------------------------------------------------------------------- /client/src/modules/compagny/constants/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/constants/list.js -------------------------------------------------------------------------------- /client/src/modules/compagny/middlewares/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/middlewares/add.js -------------------------------------------------------------------------------- /client/src/modules/compagny/middlewares/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/middlewares/join.js -------------------------------------------------------------------------------- /client/src/modules/compagny/middlewares/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/middlewares/leave.js -------------------------------------------------------------------------------- /client/src/modules/compagny/middlewares/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/middlewares/list.js -------------------------------------------------------------------------------- /client/src/modules/compagny/models/Compagny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/models/Compagny.js -------------------------------------------------------------------------------- /client/src/modules/compagny/reducers/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/reducers/add.js -------------------------------------------------------------------------------- /client/src/modules/compagny/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/reducers/index.js -------------------------------------------------------------------------------- /client/src/modules/compagny/reducers/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/reducers/join.js -------------------------------------------------------------------------------- /client/src/modules/compagny/reducers/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/reducers/leave.js -------------------------------------------------------------------------------- /client/src/modules/compagny/reducers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/reducers/list.js -------------------------------------------------------------------------------- /client/src/modules/compagny/views/AddCompagnyView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/views/AddCompagnyView.js -------------------------------------------------------------------------------- /client/src/modules/compagny/views/ListCompagnyView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/compagny/views/ListCompagnyView.js -------------------------------------------------------------------------------- /client/src/modules/input/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/actions/add.js -------------------------------------------------------------------------------- /client/src/modules/input/actions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/actions/list.js -------------------------------------------------------------------------------- /client/src/modules/input/components/InputRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/components/InputRow.js -------------------------------------------------------------------------------- /client/src/modules/input/constants/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/constants/add.js -------------------------------------------------------------------------------- /client/src/modules/input/constants/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/constants/list.js -------------------------------------------------------------------------------- /client/src/modules/input/middlewares/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/middlewares/add.js -------------------------------------------------------------------------------- /client/src/modules/input/middlewares/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/middlewares/list.js -------------------------------------------------------------------------------- /client/src/modules/input/reducers/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/reducers/add.js -------------------------------------------------------------------------------- /client/src/modules/input/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/reducers/index.js -------------------------------------------------------------------------------- /client/src/modules/input/reducers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/reducers/list.js -------------------------------------------------------------------------------- /client/src/modules/input/views/ListInputsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/input/views/ListInputsView.js -------------------------------------------------------------------------------- /client/src/modules/quote/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/actions/add.js -------------------------------------------------------------------------------- /client/src/modules/quote/actions/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/actions/delete.js -------------------------------------------------------------------------------- /client/src/modules/quote/actions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/actions/list.js -------------------------------------------------------------------------------- /client/src/modules/quote/actions/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/actions/show.js -------------------------------------------------------------------------------- /client/src/modules/quote/components/QuoteRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/components/QuoteRow.js -------------------------------------------------------------------------------- /client/src/modules/quote/components/form/QuoteForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/components/form/QuoteForm.js -------------------------------------------------------------------------------- /client/src/modules/quote/components/form/validators/quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/components/form/validators/quote.js -------------------------------------------------------------------------------- /client/src/modules/quote/constants/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/constants/add.js -------------------------------------------------------------------------------- /client/src/modules/quote/constants/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/constants/delete.js -------------------------------------------------------------------------------- /client/src/modules/quote/constants/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/constants/list.js -------------------------------------------------------------------------------- /client/src/modules/quote/constants/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/constants/show.js -------------------------------------------------------------------------------- /client/src/modules/quote/middlewares/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/middlewares/add.js -------------------------------------------------------------------------------- /client/src/modules/quote/middlewares/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/middlewares/delete.js -------------------------------------------------------------------------------- /client/src/modules/quote/middlewares/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/middlewares/list.js -------------------------------------------------------------------------------- /client/src/modules/quote/middlewares/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/middlewares/show.js -------------------------------------------------------------------------------- /client/src/modules/quote/reducers/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/reducers/add.js -------------------------------------------------------------------------------- /client/src/modules/quote/reducers/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/reducers/delete.js -------------------------------------------------------------------------------- /client/src/modules/quote/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/reducers/index.js -------------------------------------------------------------------------------- /client/src/modules/quote/reducers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/reducers/list.js -------------------------------------------------------------------------------- /client/src/modules/quote/reducers/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/reducers/show.js -------------------------------------------------------------------------------- /client/src/modules/quote/views/AddQuoteView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/views/AddQuoteView.js -------------------------------------------------------------------------------- /client/src/modules/quote/views/ListQuoteView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/views/ListQuoteView.js -------------------------------------------------------------------------------- /client/src/modules/quote/views/QuoteDetailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/quote/views/QuoteDetailView.js -------------------------------------------------------------------------------- /client/src/modules/user/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/actions/add.js -------------------------------------------------------------------------------- /client/src/modules/user/actions/currentCompagny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/actions/currentCompagny.js -------------------------------------------------------------------------------- /client/src/modules/user/actions/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/actions/delete.js -------------------------------------------------------------------------------- /client/src/modules/user/actions/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/actions/edit.js -------------------------------------------------------------------------------- /client/src/modules/user/actions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/actions/list.js -------------------------------------------------------------------------------- /client/src/modules/user/actions/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/actions/password.js -------------------------------------------------------------------------------- /client/src/modules/user/components/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/Search.js -------------------------------------------------------------------------------- /client/src/modules/user/components/UserRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/UserRow.js -------------------------------------------------------------------------------- /client/src/modules/user/components/form/PasswordForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/form/PasswordForm.js -------------------------------------------------------------------------------- /client/src/modules/user/components/form/ProfileForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/form/ProfileForm.js -------------------------------------------------------------------------------- /client/src/modules/user/components/form/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/form/UserForm.js -------------------------------------------------------------------------------- /client/src/modules/user/components/form/validators/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/form/validators/password.js -------------------------------------------------------------------------------- /client/src/modules/user/components/form/validators/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/form/validators/profile.js -------------------------------------------------------------------------------- /client/src/modules/user/components/form/validators/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/components/form/validators/user.js -------------------------------------------------------------------------------- /client/src/modules/user/constants/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/constants/add.js -------------------------------------------------------------------------------- /client/src/modules/user/constants/currentCompagny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/constants/currentCompagny.js -------------------------------------------------------------------------------- /client/src/modules/user/constants/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/constants/delete.js -------------------------------------------------------------------------------- /client/src/modules/user/constants/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/constants/edit.js -------------------------------------------------------------------------------- /client/src/modules/user/constants/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/constants/list.js -------------------------------------------------------------------------------- /client/src/modules/user/constants/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/constants/password.js -------------------------------------------------------------------------------- /client/src/modules/user/middlewares/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/middlewares/add.js -------------------------------------------------------------------------------- /client/src/modules/user/middlewares/currentCompagny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/middlewares/currentCompagny.js -------------------------------------------------------------------------------- /client/src/modules/user/middlewares/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/middlewares/delete.js -------------------------------------------------------------------------------- /client/src/modules/user/middlewares/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/middlewares/edit.js -------------------------------------------------------------------------------- /client/src/modules/user/middlewares/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/middlewares/list.js -------------------------------------------------------------------------------- /client/src/modules/user/middlewares/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/middlewares/password.js -------------------------------------------------------------------------------- /client/src/modules/user/models/LoggedUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/models/LoggedUser.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/add.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/currentCompagny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/currentCompagny.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/delete.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/edit.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/index.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/list.js -------------------------------------------------------------------------------- /client/src/modules/user/reducers/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/reducers/password.js -------------------------------------------------------------------------------- /client/src/modules/user/views/AddUserView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/views/AddUserView.js -------------------------------------------------------------------------------- /client/src/modules/user/views/EditUserView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/views/EditUserView.js -------------------------------------------------------------------------------- /client/src/modules/user/views/ListUsersView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/modules/user/views/ListUsersView.js -------------------------------------------------------------------------------- /client/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/routes/index.js -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/store/index.js -------------------------------------------------------------------------------- /client/src/store/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/store/reducers.js -------------------------------------------------------------------------------- /client/src/utils/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/utils/axios.js -------------------------------------------------------------------------------- /client/src/utils/errorFormater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/utils/errorFormater.js -------------------------------------------------------------------------------- /client/src/utils/tokenStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/src/utils/tokenStorage.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarchois/topflop/HEAD/client/yarn.lock --------------------------------------------------------------------------------