├── .env.example ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── Procfile ├── README.md ├── email-templates ├── contact.html ├── emailAddressVerification.html ├── invitation.html ├── passwordReset.html └── reviewNotification.html ├── frontend ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode │ └── settings.json ├── compress-cra.json ├── package.json ├── public │ ├── .gitignore │ ├── favicon.ico │ ├── google2bd0bc85278ec759.html │ ├── google2fa48b038f650556.html │ ├── images │ │ ├── 403.svg │ │ ├── 404.svg │ │ ├── 500.svg │ │ ├── all-infos.png │ │ ├── balance.png │ │ ├── crowd-of-users.png │ │ ├── emailUnverified.jpg │ │ ├── emptyPermissions.jpg │ │ ├── facebook.png │ │ ├── files │ │ │ ├── pdf.png │ │ │ └── pdf.svg │ │ ├── flags │ │ │ ├── Deutschland.png │ │ │ ├── README.md │ │ │ └── United-States.png │ │ ├── forgotPassword.jpg │ │ ├── google.png │ │ ├── header.png │ │ ├── home-box-cfd.png │ │ ├── home-box-forex.png │ │ ├── invitation.jpg │ │ ├── ranking │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ ├── signin.jpg │ │ ├── signup.jpg │ │ ├── star-fill.png │ │ ├── star-grey.png │ │ ├── tenant.jpg │ │ └── twitter.svg │ ├── index.html │ ├── js │ │ └── jquery_rev1595862552.js.pagespeed.jm.ji5sW3k7Fe.js │ ├── manifest.json │ ├── robots.txt │ └── styles │ │ └── material-icons │ │ ├── LDItaoyNOAY6Uewc665JcIzCKsKc_M9flwmP.woff2 │ │ ├── flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2 │ │ ├── gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUce.woff2 │ │ ├── hESh6WRmNCxEqUmNyh3JDeGxjVVyMg4tHGctNCu0.woff2 │ │ ├── material-icons-outlined.css │ │ ├── material-icons-round.css │ │ ├── material-icons-sharp.css │ │ ├── material-icons-two-tones.css │ │ ├── material-icons.css │ │ └── oPWQ_lt5nv4pWNJpghLP75WiFR4kLh3kvmvR.woff2 ├── src │ ├── App.tsx │ ├── CookieConsentModal.tsx │ ├── CookieConsentTool.tsx │ ├── ScrollTo.tsx │ ├── ScrollTop.tsx │ ├── assets │ │ ├── resources.tsx │ │ └── scrollbar.css │ ├── config │ │ ├── common.tsx │ │ ├── index.tsx │ │ ├── localhost.tsx │ │ ├── production.tsx │ │ ├── staging.tsx │ │ └── testenv.tsx │ ├── dnd-context.tsx │ ├── i18n │ │ ├── de.tsx │ │ └── index.tsx │ ├── index.tsx │ ├── modules │ │ ├── affiliateLink │ │ │ ├── affiliateLinkEnumerators.tsx │ │ │ ├── affiliateLinkReducers.tsx │ │ │ ├── affiliateLinkSelectors.tsx │ │ │ ├── affiliateLinkService.tsx │ │ │ ├── destroy │ │ │ │ ├── affiliateLinkDestroyActions.tsx │ │ │ │ ├── affiliateLinkDestroyReducers.tsx │ │ │ │ └── affiliateLinkDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── affiliateLinkFormActions.tsx │ │ │ │ ├── affiliateLinkFormReducers.tsx │ │ │ │ └── affiliateLinkFormSelectors.tsx │ │ │ ├── home │ │ │ │ └── affiliateLinkHomeActions.tsx │ │ │ ├── importer │ │ │ │ ├── affiliateLinkImporterActions.tsx │ │ │ │ ├── affiliateLinkImporterFields.tsx │ │ │ │ ├── affiliateLinkImporterReducers.tsx │ │ │ │ └── affiliateLinkImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── affiliateLinkListActions.tsx │ │ │ │ ├── affiliateLinkListExporterFields.tsx │ │ │ │ ├── affiliateLinkListReducers.tsx │ │ │ │ └── affiliateLinkListSelectors.tsx │ │ │ └── view │ │ │ │ ├── affiliateLinkViewActions.tsx │ │ │ │ ├── affiliateLinkViewReducers.tsx │ │ │ │ └── affiliateLinkViewSelectors.tsx │ │ ├── auditLog │ │ │ ├── auditLogActions.tsx │ │ │ ├── auditLogExporterFields.tsx │ │ │ ├── auditLogReducers.tsx │ │ │ ├── auditLogSelectors.tsx │ │ │ └── auditLogService.tsx │ │ ├── auth │ │ │ ├── authActions.tsx │ │ │ ├── authCurrentTenant.tsx │ │ │ ├── authInitializer.tsx │ │ │ ├── authInvitationToken.tsx │ │ │ ├── authReducers.tsx │ │ │ ├── authSelectors.tsx │ │ │ ├── authService.tsx │ │ │ ├── authToken.tsx │ │ │ └── permissionChecker.tsx │ │ ├── author │ │ │ ├── authorEnumerators.tsx │ │ │ ├── authorReducers.tsx │ │ │ ├── authorSelectors.tsx │ │ │ ├── authorService.tsx │ │ │ ├── destroy │ │ │ │ ├── authorDestroyActions.tsx │ │ │ │ ├── authorDestroyReducers.tsx │ │ │ │ └── authorDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── authorFormActions.tsx │ │ │ │ ├── authorFormReducers.tsx │ │ │ │ └── authorFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── authorHomeActions.tsx │ │ │ │ ├── authorHomeReducers.tsx │ │ │ │ └── authorHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── authorImporterActions.tsx │ │ │ │ ├── authorImporterFields.tsx │ │ │ │ ├── authorImporterReducers.tsx │ │ │ │ └── authorImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── authorListActions.tsx │ │ │ │ ├── authorListExporterFields.tsx │ │ │ │ ├── authorListReducers.tsx │ │ │ │ └── authorListSelectors.tsx │ │ │ └── view │ │ │ │ ├── authorViewActions.tsx │ │ │ │ ├── authorViewReducers.tsx │ │ │ │ └── authorViewSelectors.tsx │ │ ├── blog │ │ │ ├── blogEnumerators.tsx │ │ │ ├── blogReducers.tsx │ │ │ ├── blogSelectors.tsx │ │ │ ├── blogService.tsx │ │ │ ├── destroy │ │ │ │ ├── blogDestroyActions.tsx │ │ │ │ ├── blogDestroyReducers.tsx │ │ │ │ └── blogDestroySelectors.tsx │ │ │ ├── find │ │ │ │ ├── blogFindActions.tsx │ │ │ │ ├── blogFindReducers.tsx │ │ │ │ └── blogFindSelectors.tsx │ │ │ ├── form │ │ │ │ ├── blogFormActions.tsx │ │ │ │ ├── blogFormReducers.tsx │ │ │ │ └── blogFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── blogHomeActions.tsx │ │ │ │ ├── blogHomeReducers.tsx │ │ │ │ └── blogHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── blogImporterActions.tsx │ │ │ │ ├── blogImporterFields.tsx │ │ │ │ ├── blogImporterReducers.tsx │ │ │ │ └── blogImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── blogListActions.tsx │ │ │ │ ├── blogListExporterFields.tsx │ │ │ │ ├── blogListReducers.tsx │ │ │ │ └── blogListSelectors.tsx │ │ │ └── view │ │ │ │ ├── blogViewActions.tsx │ │ │ │ ├── blogViewReducers.tsx │ │ │ │ └── blogViewSelectors.tsx │ │ ├── blogComment │ │ │ ├── blogCommentEnumerators.tsx │ │ │ ├── blogCommentReducers.tsx │ │ │ ├── blogCommentSelectors.tsx │ │ │ ├── blogCommentService.tsx │ │ │ ├── destroy │ │ │ │ ├── blogCommentDestroyActions.tsx │ │ │ │ ├── blogCommentDestroyReducers.tsx │ │ │ │ └── blogCommentDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── blogCommentFormActions.tsx │ │ │ │ ├── blogCommentFormReducers.tsx │ │ │ │ └── blogCommentFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── blogCommentHomeActions.tsx │ │ │ │ ├── blogCommentHomeReducers.tsx │ │ │ │ └── blogCommentHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── blogCommentImporterActions.tsx │ │ │ │ ├── blogCommentImporterFields.tsx │ │ │ │ ├── blogCommentImporterReducers.tsx │ │ │ │ └── blogCommentImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── blogCommentListActions.tsx │ │ │ │ ├── blogCommentListExporterFields.tsx │ │ │ │ ├── blogCommentListReducers.tsx │ │ │ │ └── blogCommentListSelectors.tsx │ │ │ ├── review │ │ │ │ ├── blogCommentReviewActions.tsx │ │ │ │ ├── blogCommentReviewReducers.tsx │ │ │ │ └── blogCommentReviewSelectors.tsx │ │ │ ├── spam │ │ │ │ ├── blogCommentSpamActions.tsx │ │ │ │ ├── blogCommentSpamReducers.tsx │ │ │ │ └── blogCommentSpamSelectors.tsx │ │ │ └── view │ │ │ │ ├── blogCommentViewActions.tsx │ │ │ │ ├── blogCommentViewReducers.tsx │ │ │ │ └── blogCommentViewSelectors.tsx │ │ ├── broker │ │ │ ├── brokerEnumerators.tsx │ │ │ ├── brokerReducers.tsx │ │ │ ├── brokerSelectors.tsx │ │ │ ├── brokerService.tsx │ │ │ ├── brokerUtils.tsx │ │ │ ├── comparable │ │ │ │ ├── brokerComparableActions.tsx │ │ │ │ ├── brokerComparableReducers.tsx │ │ │ │ └── brokerComparableSelectors.tsx │ │ │ ├── comparison │ │ │ │ ├── brokerComparisonActions.tsx │ │ │ │ ├── brokerComparisonReducers.tsx │ │ │ │ └── brokerComparisonSelectors.tsx │ │ │ ├── destroy │ │ │ │ ├── brokerDestroyActions.tsx │ │ │ │ ├── brokerDestroyReducers.tsx │ │ │ │ └── brokerDestroySelectors.tsx │ │ │ ├── featured │ │ │ │ ├── brokerFeaturedActions.tsx │ │ │ │ ├── brokerFeaturedReducers.tsx │ │ │ │ └── brokerFeaturedSelectors.tsx │ │ │ ├── form │ │ │ │ ├── brokerFormActions.tsx │ │ │ │ ├── brokerFormReducers.tsx │ │ │ │ └── brokerFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── brokerHomeActions.tsx │ │ │ │ ├── brokerHomeReducers.tsx │ │ │ │ └── brokerHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── brokerImporterActions.tsx │ │ │ │ ├── brokerImporterFields.tsx │ │ │ │ ├── brokerImporterReducers.tsx │ │ │ │ └── brokerImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── brokerListActions.tsx │ │ │ │ ├── brokerListExporterFields.tsx │ │ │ │ ├── brokerListReducers.tsx │ │ │ │ └── brokerListSelectors.tsx │ │ │ ├── top │ │ │ │ ├── brokerTopActions.tsx │ │ │ │ ├── brokerTopReducers.tsx │ │ │ │ └── brokerTopSelectors.tsx │ │ │ └── view │ │ │ │ ├── brokerViewActions.tsx │ │ │ │ ├── brokerViewReducers.tsx │ │ │ │ └── brokerViewSelectors.tsx │ │ ├── brokerArticle │ │ │ ├── brokerArticleEnumerators.tsx │ │ │ ├── brokerArticleReducers.tsx │ │ │ ├── brokerArticleSelectors.tsx │ │ │ ├── brokerArticleService.tsx │ │ │ ├── destroy │ │ │ │ ├── brokerArticleDestroyActions.tsx │ │ │ │ ├── brokerArticleDestroyReducers.tsx │ │ │ │ └── brokerArticleDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── brokerArticleFormActions.tsx │ │ │ │ ├── brokerArticleFormReducers.tsx │ │ │ │ └── brokerArticleFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── brokerArticleHomeActions.tsx │ │ │ │ ├── brokerArticleHomeReducers.tsx │ │ │ │ └── brokerArticleHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── brokerArticleImporterActions.tsx │ │ │ │ ├── brokerArticleImporterFields.tsx │ │ │ │ ├── brokerArticleImporterReducers.tsx │ │ │ │ └── brokerArticleImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── brokerArticleListActions.tsx │ │ │ │ ├── brokerArticleListExporterFields.tsx │ │ │ │ ├── brokerArticleListReducers.tsx │ │ │ │ └── brokerArticleListSelectors.tsx │ │ │ └── view │ │ │ │ ├── brokerArticleViewActions.tsx │ │ │ │ ├── brokerArticleViewReducers.tsx │ │ │ │ └── brokerArticleViewSelectors.tsx │ │ ├── brokerPost │ │ │ ├── brokerPostEnumerators.tsx │ │ │ ├── brokerPostReducers.tsx │ │ │ ├── brokerPostSelectors.tsx │ │ │ ├── brokerPostService.tsx │ │ │ ├── destroy │ │ │ │ ├── brokerPostDestroyActions.tsx │ │ │ │ ├── brokerPostDestroyReducers.tsx │ │ │ │ └── brokerPostDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── brokerPostFormActions.tsx │ │ │ │ ├── brokerPostFormReducers.tsx │ │ │ │ └── brokerPostFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── brokerPostHomeActions.tsx │ │ │ │ ├── brokerPostHomeReducers.tsx │ │ │ │ └── brokerPostHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── brokerPostImporterActions.tsx │ │ │ │ ├── brokerPostImporterFields.tsx │ │ │ │ ├── brokerPostImporterReducers.tsx │ │ │ │ └── brokerPostImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── brokerPostListActions.tsx │ │ │ │ ├── brokerPostListExporterFields.tsx │ │ │ │ ├── brokerPostListReducers.tsx │ │ │ │ └── brokerPostListSelectors.tsx │ │ │ ├── review │ │ │ │ ├── brokerPostReviewActions.tsx │ │ │ │ ├── brokerPostReviewReducers.tsx │ │ │ │ └── brokerPostReviewSelectors.tsx │ │ │ ├── spam │ │ │ │ ├── brokerPostSpamActions.tsx │ │ │ │ ├── brokerPostSpamReducers.tsx │ │ │ │ └── brokerPostSpamSelectors.tsx │ │ │ └── view │ │ │ │ ├── brokerPostViewActions.tsx │ │ │ │ ├── brokerPostViewReducers.tsx │ │ │ │ └── brokerPostViewSelectors.tsx │ │ ├── category │ │ │ ├── categoryEnumerators.tsx │ │ │ ├── categoryReducers.tsx │ │ │ ├── categorySelectors.tsx │ │ │ ├── categoryService.tsx │ │ │ ├── destroy │ │ │ │ ├── categoryDestroyActions.tsx │ │ │ │ ├── categoryDestroyReducers.tsx │ │ │ │ └── categoryDestroySelectors.tsx │ │ │ ├── footer │ │ │ │ ├── categoryFooterActions.tsx │ │ │ │ ├── categoryFooterReducers.tsx │ │ │ │ └── categoryFooterSelectors.tsx │ │ │ ├── form │ │ │ │ ├── categoryFormActions.tsx │ │ │ │ ├── categoryFormReducers.tsx │ │ │ │ └── categoryFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── categoryHomeActions.tsx │ │ │ │ ├── categoryHomeReducers.tsx │ │ │ │ └── categoryHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── categoryImporterActions.tsx │ │ │ │ ├── categoryImporterFields.tsx │ │ │ │ ├── categoryImporterReducers.tsx │ │ │ │ └── categoryImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── categoryListActions.tsx │ │ │ │ ├── categoryListExporterFields.tsx │ │ │ │ ├── categoryListReducers.tsx │ │ │ │ └── categoryListSelectors.tsx │ │ │ ├── sidebar │ │ │ │ ├── categorySidebarActions.tsx │ │ │ │ ├── categorySidebarReducers.tsx │ │ │ │ └── categorySidebarSelectors.tsx │ │ │ └── view │ │ │ │ ├── categoryViewActions.tsx │ │ │ │ ├── categoryViewReducers.tsx │ │ │ │ └── categoryViewSelectors.tsx │ │ ├── expertAdvisorTest │ │ │ ├── destroy │ │ │ │ ├── expertAdvisorTestDestroyActions.tsx │ │ │ │ ├── expertAdvisorTestDestroyReducers.tsx │ │ │ │ └── expertAdvisorTestDestroySelectors.tsx │ │ │ ├── expertAdvisorTestEnumerators.tsx │ │ │ ├── expertAdvisorTestReducers.tsx │ │ │ ├── expertAdvisorTestSelectors.tsx │ │ │ ├── expertAdvisorTestService.tsx │ │ │ ├── form │ │ │ │ ├── expertAdvisorTestFormActions.tsx │ │ │ │ ├── expertAdvisorTestFormReducers.tsx │ │ │ │ └── expertAdvisorTestFormSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── expertAdvisorTestImporterActions.tsx │ │ │ │ ├── expertAdvisorTestImporterFields.tsx │ │ │ │ ├── expertAdvisorTestImporterReducers.tsx │ │ │ │ └── expertAdvisorTestImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── expertAdvisorTestListActions.tsx │ │ │ │ ├── expertAdvisorTestListExporterFields.tsx │ │ │ │ ├── expertAdvisorTestListReducers.tsx │ │ │ │ └── expertAdvisorTestListSelectors.tsx │ │ │ └── view │ │ │ │ ├── expertAdvisorTestViewActions.tsx │ │ │ │ ├── expertAdvisorTestViewReducers.tsx │ │ │ │ └── expertAdvisorTestViewSelectors.tsx │ │ ├── form │ │ │ ├── formActions.tsx │ │ │ ├── formReducers.tsx │ │ │ └── formSelectors.tsx │ │ ├── initializers.tsx │ │ ├── layout │ │ │ ├── layoutActions.tsx │ │ │ ├── layoutReducers.tsx │ │ │ └── layoutSelectors.tsx │ │ ├── mui │ │ │ ├── muiActions.tsx │ │ │ ├── muiReducers.tsx │ │ │ ├── muiSelectors.tsx │ │ │ └── muiService.tsx │ │ ├── navigation │ │ │ ├── destroy │ │ │ │ ├── navigationDestroyActions.tsx │ │ │ │ ├── navigationDestroyReducers.tsx │ │ │ │ └── navigationDestroySelectors.tsx │ │ │ ├── forexSchool │ │ │ │ ├── navigationForexSchoolActions.tsx │ │ │ │ ├── navigationForexSchoolReducers.tsx │ │ │ │ └── navigationForexSchoolSelectors.tsx │ │ │ ├── forexStrategy │ │ │ │ ├── navigationForexStrategyActions.tsx │ │ │ │ ├── navigationForexStrategyReducers.tsx │ │ │ │ └── navigationForexStrategySelectors.tsx │ │ │ ├── form │ │ │ │ ├── navigationFormActions.tsx │ │ │ │ ├── navigationFormReducers.tsx │ │ │ │ └── navigationFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── navigationHomeActions.tsx │ │ │ │ ├── navigationHomeReducers.tsx │ │ │ │ └── navigationHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── navigationImporterActions.tsx │ │ │ │ ├── navigationImporterFields.tsx │ │ │ │ ├── navigationImporterReducers.tsx │ │ │ │ └── navigationImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── navigationListActions.tsx │ │ │ │ ├── navigationListExporterFields.tsx │ │ │ │ ├── navigationListReducers.tsx │ │ │ │ └── navigationListSelectors.tsx │ │ │ ├── mostRead │ │ │ │ ├── navigationMostReadActions.tsx │ │ │ │ ├── navigationMostReadReducers.tsx │ │ │ │ └── navigationMostReadSelectors.tsx │ │ │ ├── navigationEnumerators.tsx │ │ │ ├── navigationReducers.tsx │ │ │ ├── navigationSelectors.tsx │ │ │ ├── navigationService.tsx │ │ │ ├── navigationUtils.tsx │ │ │ └── view │ │ │ │ ├── navigationViewActions.tsx │ │ │ │ ├── navigationViewReducers.tsx │ │ │ │ └── navigationViewSelectors.tsx │ │ ├── news │ │ │ ├── destroy │ │ │ │ ├── newsDestroyActions.tsx │ │ │ │ ├── newsDestroyReducers.tsx │ │ │ │ └── newsDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── newsFormActions.tsx │ │ │ │ ├── newsFormReducers.tsx │ │ │ │ └── newsFormSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── newsImporterActions.tsx │ │ │ │ ├── newsImporterFields.tsx │ │ │ │ ├── newsImporterReducers.tsx │ │ │ │ └── newsImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── newsListActions.tsx │ │ │ │ ├── newsListExporterFields.tsx │ │ │ │ ├── newsListReducers.tsx │ │ │ │ └── newsListSelectors.tsx │ │ │ ├── newsEnumerators.tsx │ │ │ ├── newsReducers.tsx │ │ │ ├── newsSelectors.tsx │ │ │ ├── newsService.tsx │ │ │ └── view │ │ │ │ ├── newsViewActions.tsx │ │ │ │ ├── newsViewReducers.tsx │ │ │ │ └── newsViewSelectors.tsx │ │ ├── openx │ │ │ ├── destroy │ │ │ │ ├── openxDestroyActions.tsx │ │ │ │ ├── openxDestroyReducers.tsx │ │ │ │ └── openxDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── openxFormActions.tsx │ │ │ │ ├── openxFormReducers.tsx │ │ │ │ └── openxFormSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── openxImporterActions.tsx │ │ │ │ ├── openxImporterFields.tsx │ │ │ │ ├── openxImporterReducers.tsx │ │ │ │ └── openxImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── openxListActions.tsx │ │ │ │ ├── openxListExporterFields.tsx │ │ │ │ ├── openxListReducers.tsx │ │ │ │ └── openxListSelectors.tsx │ │ │ ├── openxEnumerators.tsx │ │ │ ├── openxReducers.tsx │ │ │ ├── openxSelectors.tsx │ │ │ ├── openxService.tsx │ │ │ ├── openxUtils.tsx │ │ │ └── view │ │ │ │ ├── openxViewActions.tsx │ │ │ │ ├── openxViewReducers.tsx │ │ │ │ └── openxViewSelectors.tsx │ │ ├── page │ │ │ ├── destroy │ │ │ │ ├── pageDestroyActions.tsx │ │ │ │ ├── pageDestroyReducers.tsx │ │ │ │ └── pageDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── pageFormActions.tsx │ │ │ │ ├── pageFormReducers.tsx │ │ │ │ └── pageFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── pageHomeActions.tsx │ │ │ │ ├── pageHomeReducers.tsx │ │ │ │ └── pageHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── pageImporterActions.tsx │ │ │ │ ├── pageImporterFields.tsx │ │ │ │ ├── pageImporterReducers.tsx │ │ │ │ └── pageImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── pageListActions.tsx │ │ │ │ ├── pageListExporterFields.tsx │ │ │ │ ├── pageListReducers.tsx │ │ │ │ └── pageListSelectors.tsx │ │ │ ├── pageEnumerators.tsx │ │ │ ├── pageReducers.tsx │ │ │ ├── pageSelectors.tsx │ │ │ ├── pageService.tsx │ │ │ └── view │ │ │ │ ├── pageViewActions.tsx │ │ │ │ ├── pageViewReducers.tsx │ │ │ │ └── pageViewSelectors.tsx │ │ ├── pageWarning │ │ │ ├── destroy │ │ │ │ ├── pageWarningDestroyActions.tsx │ │ │ │ ├── pageWarningDestroyReducers.tsx │ │ │ │ └── pageWarningDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── pageWarningFormActions.tsx │ │ │ │ ├── pageWarningFormReducers.tsx │ │ │ │ └── pageWarningFormSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── pageWarningImporterActions.tsx │ │ │ │ ├── pageWarningImporterFields.tsx │ │ │ │ ├── pageWarningImporterReducers.tsx │ │ │ │ └── pageWarningImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── pageWarningListActions.tsx │ │ │ │ ├── pageWarningListExporterFields.tsx │ │ │ │ ├── pageWarningListReducers.tsx │ │ │ │ └── pageWarningListSelectors.tsx │ │ │ ├── pageWarningEnumerators.tsx │ │ │ ├── pageWarningReducers.tsx │ │ │ ├── pageWarningSelectors.tsx │ │ │ ├── pageWarningService.tsx │ │ │ └── view │ │ │ │ ├── pageWarningViewActions.tsx │ │ │ │ ├── pageWarningViewReducers.tsx │ │ │ │ └── pageWarningViewSelectors.tsx │ │ ├── plan │ │ │ ├── planActions.tsx │ │ │ ├── planReducers.tsx │ │ │ ├── planSelectors.tsx │ │ │ └── planService.tsx │ │ ├── promotion │ │ │ ├── destroy │ │ │ │ ├── promotionDestroyActions.tsx │ │ │ │ ├── promotionDestroyReducers.tsx │ │ │ │ └── promotionDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── promotionFormActions.tsx │ │ │ │ ├── promotionFormReducers.tsx │ │ │ │ └── promotionFormSelectors.tsx │ │ │ ├── home │ │ │ │ ├── promotionHomeActions.tsx │ │ │ │ ├── promotionHomeReducers.tsx │ │ │ │ └── promotionHomeSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── promotionImporterActions.tsx │ │ │ │ ├── promotionImporterFields.tsx │ │ │ │ ├── promotionImporterReducers.tsx │ │ │ │ └── promotionImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── promotionListActions.tsx │ │ │ │ ├── promotionListExporterFields.tsx │ │ │ │ ├── promotionListReducers.tsx │ │ │ │ └── promotionListSelectors.tsx │ │ │ ├── promotionEnumerators.tsx │ │ │ ├── promotionReducers.tsx │ │ │ ├── promotionSelectors.tsx │ │ │ ├── promotionService.tsx │ │ │ └── view │ │ │ │ ├── promotionViewActions.tsx │ │ │ │ ├── promotionViewReducers.tsx │ │ │ │ └── promotionViewSelectors.tsx │ │ ├── reducers.tsx │ │ ├── settings │ │ │ ├── settingsActions.tsx │ │ │ ├── settingsReducers.tsx │ │ │ ├── settingsSelectors.tsx │ │ │ ├── settingsService.tsx │ │ │ └── settingsThemeConverter.tsx │ │ ├── shared │ │ │ ├── axios │ │ │ │ └── authAxios.tsx │ │ │ ├── error │ │ │ │ └── errors.tsx │ │ │ ├── excel │ │ │ │ └── excel.tsx │ │ │ ├── exporter │ │ │ │ ├── exporter.tsx │ │ │ │ ├── exporterRenders.tsx │ │ │ │ └── exporterSchema.tsx │ │ │ ├── fileUpload │ │ │ │ └── fileUploader.tsx │ │ │ ├── filter │ │ │ │ └── filterRenders.tsx │ │ │ ├── importer │ │ │ │ ├── importer.tsx │ │ │ │ ├── importerActions.tsx │ │ │ │ ├── importerReducers.tsx │ │ │ │ ├── importerSchema.tsx │ │ │ │ ├── importerSelectors.tsx │ │ │ │ └── importerStatuses.tsx │ │ │ └── yup │ │ │ │ ├── yupFilterSchemas.tsx │ │ │ │ ├── yupFormSchemas.tsx │ │ │ │ └── yupImporterSchemas.tsx │ │ ├── sitemap │ │ │ ├── sitemapActions.tsx │ │ │ ├── sitemapReducers.tsx │ │ │ ├── sitemapSelectors.tsx │ │ │ └── sitemapService.tsx │ │ ├── store.tsx │ │ ├── tenant │ │ │ ├── destroy │ │ │ │ ├── tenantDestroyActions.tsx │ │ │ │ ├── tenantDestroyReducers.tsx │ │ │ │ └── tenantDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── tenantFormActions.tsx │ │ │ │ ├── tenantFormReducers.tsx │ │ │ │ └── tenantFormSelectors.tsx │ │ │ ├── invitation │ │ │ │ ├── tenantInvitationActions.tsx │ │ │ │ ├── tenantInvitationReducers.tsx │ │ │ │ └── tenantInvitationSelectors.tsx │ │ │ ├── list │ │ │ │ ├── tenantListActions.tsx │ │ │ │ ├── tenantListReducers.tsx │ │ │ │ └── tenantListSelectors.tsx │ │ │ ├── tenantReducers.tsx │ │ │ ├── tenantSelectors.tsx │ │ │ ├── tenantService.tsx │ │ │ └── tenantSubdomain.tsx │ │ ├── trackingParameter │ │ │ ├── destroy │ │ │ │ ├── trackingParameterDestroyActions.tsx │ │ │ │ ├── trackingParameterDestroyReducers.tsx │ │ │ │ └── trackingParameterDestroySelectors.tsx │ │ │ ├── form │ │ │ │ ├── trackingParameterFormActions.tsx │ │ │ │ ├── trackingParameterFormReducers.tsx │ │ │ │ └── trackingParameterFormSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── trackingParameterImporterActions.tsx │ │ │ │ ├── trackingParameterImporterFields.tsx │ │ │ │ ├── trackingParameterImporterReducers.tsx │ │ │ │ └── trackingParameterImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── trackingParameterListActions.tsx │ │ │ │ ├── trackingParameterListExporterFields.tsx │ │ │ │ ├── trackingParameterListReducers.tsx │ │ │ │ └── trackingParameterListSelectors.tsx │ │ │ ├── trackingParameterEnumerators.tsx │ │ │ ├── trackingParameterReducers.tsx │ │ │ ├── trackingParameterSelectors.tsx │ │ │ ├── trackingParameterService.tsx │ │ │ └── view │ │ │ │ ├── trackingParameterViewActions.tsx │ │ │ │ ├── trackingParameterViewReducers.tsx │ │ │ │ └── trackingParameterViewSelectors.tsx │ │ ├── user │ │ │ ├── form │ │ │ │ ├── userFormActions.tsx │ │ │ │ ├── userFormReducers.tsx │ │ │ │ └── userFormSelectors.tsx │ │ │ ├── importer │ │ │ │ ├── userImporterActions.tsx │ │ │ │ ├── userImporterFields.tsx │ │ │ │ ├── userImporterReducers.tsx │ │ │ │ └── userImporterSelectors.tsx │ │ │ ├── list │ │ │ │ ├── userListActions.tsx │ │ │ │ ├── userListExporterFields.tsx │ │ │ │ ├── userListReducers.tsx │ │ │ │ └── userListSelectors.tsx │ │ │ ├── userEnumerators.tsx │ │ │ ├── userReducers.tsx │ │ │ ├── userSelectors.tsx │ │ │ ├── userService.tsx │ │ │ └── view │ │ │ │ ├── userViewActions.tsx │ │ │ │ ├── userViewReducers.tsx │ │ │ │ └── userViewSelectors.tsx │ │ └── utils.tsx │ ├── mui │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── bg-pricing.jpg │ │ │ │ ├── bg-profile.jpeg │ │ │ │ ├── bg-reset-cover.jpeg │ │ │ │ ├── bg-sign-in-basic.jpeg │ │ │ │ ├── bg-sign-in-cover.jpeg │ │ │ │ ├── bg-sign-up-cover.jpeg │ │ │ │ ├── down-arrow-dark.svg │ │ │ │ ├── down-arrow-white.svg │ │ │ │ ├── down-arrow.svg │ │ │ │ ├── illustrations │ │ │ │ │ ├── illustration-lock.jpg │ │ │ │ │ ├── illustration-reset.jpg │ │ │ │ │ ├── illustration-verification.jpg │ │ │ │ │ └── pattern-tree.svg │ │ │ │ ├── ivancik.jpg │ │ │ │ ├── logos │ │ │ │ │ ├── gray-logos │ │ │ │ │ │ ├── logo-coinbase.svg │ │ │ │ │ │ ├── logo-nasa.svg │ │ │ │ │ │ ├── logo-netflix.svg │ │ │ │ │ │ ├── logo-pinterest.svg │ │ │ │ │ │ ├── logo-spotify.svg │ │ │ │ │ │ └── logo-vodafone.svg │ │ │ │ │ ├── mastercard.png │ │ │ │ │ └── visa.png │ │ │ │ ├── shapes │ │ │ │ │ ├── pattern-lines.svg │ │ │ │ │ └── waves-white.svg │ │ │ │ └── small-logos │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── creative-tim.svg │ │ │ │ │ ├── devto.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── google-webdev.svg │ │ │ │ │ ├── icon-bulb.svg │ │ │ │ │ ├── icon-sun-cloud.png │ │ │ │ │ ├── logo-asana.svg │ │ │ │ │ ├── logo-atlassian.svg │ │ │ │ │ ├── logo-invision.svg │ │ │ │ │ ├── logo-jira.svg │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ ├── logo-spotify.svg │ │ │ │ │ └── logo-xd.svg │ │ │ ├── theme-dark │ │ │ │ ├── base │ │ │ │ │ ├── borders.ts │ │ │ │ │ ├── boxShadows.ts │ │ │ │ │ ├── breakpoints.ts │ │ │ │ │ ├── colors.ts │ │ │ │ │ ├── globals.ts │ │ │ │ │ └── typography.ts │ │ │ │ ├── components │ │ │ │ │ ├── appBar.ts │ │ │ │ │ ├── avatar.ts │ │ │ │ │ ├── breadcrumbs.ts │ │ │ │ │ ├── button │ │ │ │ │ │ ├── contained.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── outlined.ts │ │ │ │ │ │ ├── root.ts │ │ │ │ │ │ └── text.ts │ │ │ │ │ ├── buttonBase.ts │ │ │ │ │ ├── card │ │ │ │ │ │ ├── cardContent.ts │ │ │ │ │ │ ├── cardMedia.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── container.ts │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialogActions.ts │ │ │ │ │ │ ├── dialogContent.ts │ │ │ │ │ │ ├── dialogContentText.ts │ │ │ │ │ │ ├── dialogTitle.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── divider.ts │ │ │ │ │ ├── flatpickr.ts │ │ │ │ │ ├── form │ │ │ │ │ │ ├── autocomplete.ts │ │ │ │ │ │ ├── checkbox.ts │ │ │ │ │ │ ├── formControlLabel.ts │ │ │ │ │ │ ├── formLabel.ts │ │ │ │ │ │ ├── input.ts │ │ │ │ │ │ ├── inputLabel.ts │ │ │ │ │ │ ├── inputOutlined.ts │ │ │ │ │ │ ├── radio.ts │ │ │ │ │ │ ├── select.ts │ │ │ │ │ │ ├── switchButton.ts │ │ │ │ │ │ └── textField.ts │ │ │ │ │ ├── icon.ts │ │ │ │ │ ├── iconButton.ts │ │ │ │ │ ├── linearProgress.ts │ │ │ │ │ ├── link.ts │ │ │ │ │ ├── list │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── listItem.ts │ │ │ │ │ │ └── listItemText.ts │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── menuItem.ts │ │ │ │ │ ├── popover.ts │ │ │ │ │ ├── sidenav.ts │ │ │ │ │ ├── slider.ts │ │ │ │ │ ├── stepper │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── step.ts │ │ │ │ │ │ ├── stepConnector.ts │ │ │ │ │ │ ├── stepIcon.ts │ │ │ │ │ │ └── stepLabel.ts │ │ │ │ │ ├── svgIcon.ts │ │ │ │ │ ├── table │ │ │ │ │ │ ├── tableCell.ts │ │ │ │ │ │ ├── tableContainer.ts │ │ │ │ │ │ └── tableHead.ts │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── tab.ts │ │ │ │ │ └── tooltip.ts │ │ │ │ ├── functions │ │ │ │ │ ├── boxShadow.ts │ │ │ │ │ ├── gradientChartLine.ts │ │ │ │ │ ├── hexToRgb.ts │ │ │ │ │ ├── linearGradient.ts │ │ │ │ │ ├── pxToRem.ts │ │ │ │ │ └── rgba.ts │ │ │ │ ├── index.ts │ │ │ │ └── theme-rtl.ts │ │ │ └── theme │ │ │ │ ├── base │ │ │ │ ├── borders.ts │ │ │ │ ├── boxShadows.ts │ │ │ │ ├── breakpoints.ts │ │ │ │ ├── colors.ts │ │ │ │ ├── globals.ts │ │ │ │ └── typography.ts │ │ │ │ ├── components │ │ │ │ ├── appBar.ts │ │ │ │ ├── avatar.ts │ │ │ │ ├── breadcrumbs.ts │ │ │ │ ├── button │ │ │ │ │ ├── contained.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── outlined.ts │ │ │ │ │ ├── root.ts │ │ │ │ │ └── text.ts │ │ │ │ ├── buttonBase.ts │ │ │ │ ├── card │ │ │ │ │ ├── cardContent.ts │ │ │ │ │ ├── cardMedia.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── container.ts │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogActions.ts │ │ │ │ │ ├── dialogContent.ts │ │ │ │ │ ├── dialogContentText.ts │ │ │ │ │ ├── dialogTitle.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── divider.ts │ │ │ │ ├── flatpickr.ts │ │ │ │ ├── form │ │ │ │ │ ├── autocomplete.ts │ │ │ │ │ ├── checkbox.ts │ │ │ │ │ ├── formControlLabel.ts │ │ │ │ │ ├── formLabel.ts │ │ │ │ │ ├── input.ts │ │ │ │ │ ├── inputLabel.ts │ │ │ │ │ ├── inputOutlined.ts │ │ │ │ │ ├── radio.ts │ │ │ │ │ ├── select.ts │ │ │ │ │ ├── switchButton.ts │ │ │ │ │ └── textField.ts │ │ │ │ ├── icon.ts │ │ │ │ ├── iconButton.ts │ │ │ │ ├── linearProgress.ts │ │ │ │ ├── link.ts │ │ │ │ ├── list │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── listItem.ts │ │ │ │ │ └── listItemText.ts │ │ │ │ ├── menu │ │ │ │ │ ├── index.ts │ │ │ │ │ └── menuItem.ts │ │ │ │ ├── popover.ts │ │ │ │ ├── sidenav.ts │ │ │ │ ├── slider.ts │ │ │ │ ├── stepper │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── step.ts │ │ │ │ │ ├── stepConnector.ts │ │ │ │ │ ├── stepIcon.ts │ │ │ │ │ └── stepLabel.ts │ │ │ │ ├── svgIcon.ts │ │ │ │ ├── table │ │ │ │ │ ├── tableCell.ts │ │ │ │ │ ├── tableContainer.ts │ │ │ │ │ └── tableHead.ts │ │ │ │ ├── tabs │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tab.ts │ │ │ │ └── tooltip.ts │ │ │ │ ├── functions │ │ │ │ ├── boxShadow.ts │ │ │ │ ├── gradientChartLine.ts │ │ │ │ ├── hexToRgb.ts │ │ │ │ ├── linearGradient.ts │ │ │ │ ├── pxToRem.ts │ │ │ │ └── rgba.ts │ │ │ │ ├── index.ts │ │ │ │ └── theme-rtl.ts │ │ ├── components │ │ │ ├── MDAlert │ │ │ │ ├── MDAlertCloseIcon.tsx │ │ │ │ ├── MDAlertRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDAvatar │ │ │ │ ├── MDAvatarRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDBadge │ │ │ │ ├── MDBadgeRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDBadgeDot │ │ │ │ └── index.tsx │ │ │ ├── MDBox │ │ │ │ ├── MDBoxRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDButton │ │ │ │ ├── MDButtonRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDDatePicker │ │ │ │ └── index.tsx │ │ │ ├── MDDropzone │ │ │ │ ├── MDDropzoneRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDEditor │ │ │ │ ├── MDEditorRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDInput │ │ │ │ ├── MDInputRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDPagination │ │ │ │ ├── MDPaginationItemRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDProgress │ │ │ │ ├── MDProgressRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDSnackbar │ │ │ │ ├── MDSnackbarIconRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── MDSocialButton │ │ │ │ ├── MDSocialButtonRoot.tsx │ │ │ │ └── index.tsx │ │ │ └── MDTypography │ │ │ │ ├── MDTypographyRoot.tsx │ │ │ │ └── index.tsx │ │ ├── shared │ │ │ ├── Breadcrumbs │ │ │ │ └── index.tsx │ │ │ ├── Configurator │ │ │ │ ├── ConfiguratorRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── Footer │ │ │ │ └── index.tsx │ │ │ ├── Items │ │ │ │ ├── DefaultItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ └── NotificationItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ ├── Layouts │ │ │ │ ├── BasicLayout │ │ │ │ │ └── index.tsx │ │ │ │ ├── CoverLayout │ │ │ │ │ └── index.tsx │ │ │ │ ├── DashboardLayout │ │ │ │ │ └── index.tsx │ │ │ │ ├── Footer │ │ │ │ │ └── index.tsx │ │ │ │ ├── IllustrationLayout │ │ │ │ │ └── index.tsx │ │ │ │ └── PageLayout │ │ │ │ │ └── index.tsx │ │ │ ├── Navbars │ │ │ │ ├── DashboardNavbar │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ └── DefaultNavbar │ │ │ │ │ ├── DefaultNavbarDropdown.tsx │ │ │ │ │ ├── DefaultNavbarMobile.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── Sidenav │ │ │ │ ├── SidenavCollapse.tsx │ │ │ │ ├── SidenavItem.tsx │ │ │ │ ├── SidenavList.tsx │ │ │ │ ├── SidenavRoot.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles │ │ │ │ │ ├── sidenav.ts │ │ │ │ │ ├── sidenavCollapse.ts │ │ │ │ │ └── sidenavItem.ts │ │ │ └── Tables │ │ │ │ └── DataTable │ │ │ │ ├── DataTableBodyCell.tsx │ │ │ │ ├── DataTableHeadCell.tsx │ │ │ │ └── index.tsx │ │ └── types │ │ │ ├── images.d.ts │ │ │ ├── mui-theme.d.ts │ │ │ ├── react-images-viewer.d.ts │ │ │ ├── react-jvectormap.d.ts │ │ │ ├── react-kanban.d.ts │ │ │ └── react-table-config.d.ts │ ├── react-app-env.d.ts │ ├── security │ │ ├── permissions.tsx │ │ ├── plans.tsx │ │ ├── roles.tsx │ │ └── storage.tsx │ ├── setupTests.tsx │ └── view │ │ ├── affiliateLink │ │ ├── autocomplete │ │ │ └── AffiliateLinkAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── AffiliateLinkForm.tsx │ │ │ ├── AffiliateLinkFormModal.tsx │ │ │ └── AffiliateLinkFormPage.tsx │ │ ├── importer │ │ │ └── AffiliateLinkImporterPage.tsx │ │ ├── list │ │ │ ├── AffiliateLinkListFilter.tsx │ │ │ ├── AffiliateLinkListItem.tsx │ │ │ ├── AffiliateLinkListPage.tsx │ │ │ ├── AffiliateLinkListTable.tsx │ │ │ └── AffiliateLinkListToolbar.tsx │ │ └── view │ │ │ ├── AffiliateLinkView.tsx │ │ │ ├── AffiliateLinkViewItem.tsx │ │ │ ├── AffiliateLinkViewPage.tsx │ │ │ └── AffiliateLinkViewToolbar.tsx │ │ ├── auditLog │ │ ├── AuditLogFilter.tsx │ │ ├── AuditLogPage.tsx │ │ ├── AuditLogTable.tsx │ │ └── AuditLogToolbar.tsx │ │ ├── auth │ │ ├── EmailUnverifiedPage.tsx │ │ ├── EmptyPermissionsPage.tsx │ │ ├── ForgotPasswordPage.tsx │ │ ├── InvitationPage.tsx │ │ ├── PasswordChangeForm.tsx │ │ ├── PasswordChangeFormPage.tsx │ │ ├── PasswordResetPage.tsx │ │ ├── ProfileForm.tsx │ │ ├── ProfileFormPage.tsx │ │ ├── SigninPage.tsx │ │ ├── SignupPage.tsx │ │ ├── TenantNewForm.tsx │ │ ├── TenantPage.tsx │ │ ├── TenantSelectForm.tsx │ │ ├── VerifyEmailPage.tsx │ │ └── styles │ │ │ ├── Content.tsx │ │ │ ├── Logo.tsx │ │ │ ├── OtherActions.tsx │ │ │ ├── SocialButtons.tsx │ │ │ └── Wrapper.tsx │ │ ├── author │ │ ├── autocomplete │ │ │ └── AuthorAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── AuthorForm.tsx │ │ │ ├── AuthorFormModal.tsx │ │ │ └── AuthorFormPage.tsx │ │ ├── importer │ │ │ └── AuthorImporterPage.tsx │ │ ├── list │ │ │ ├── AuthorListFilter.tsx │ │ │ ├── AuthorListItem.tsx │ │ │ ├── AuthorListPage.tsx │ │ │ ├── AuthorListTable.tsx │ │ │ └── AuthorListToolbar.tsx │ │ └── view │ │ │ ├── AuthorView.tsx │ │ │ ├── AuthorViewItem.tsx │ │ │ ├── AuthorViewPage.tsx │ │ │ └── AuthorViewToolbar.tsx │ │ ├── blog │ │ ├── autocomplete │ │ │ └── BlogAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── BlogForm.tsx │ │ │ ├── BlogFormModal.tsx │ │ │ └── BlogFormPage.tsx │ │ ├── importer │ │ │ └── BlogImporterPage.tsx │ │ ├── list │ │ │ ├── BlogListFilter.tsx │ │ │ ├── BlogListItem.tsx │ │ │ ├── BlogListPage.tsx │ │ │ ├── BlogListTable.tsx │ │ │ └── BlogListToolbar.tsx │ │ └── view │ │ │ ├── BlogView.tsx │ │ │ ├── BlogViewItem.tsx │ │ │ ├── BlogViewPage.tsx │ │ │ └── BlogViewToolbar.tsx │ │ ├── blogComment │ │ ├── autocomplete │ │ │ └── BlogCommentAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── BlogCommentForm.tsx │ │ │ ├── BlogCommentFormModal.tsx │ │ │ └── BlogCommentFormPage.tsx │ │ ├── importer │ │ │ └── BlogCommentImporterPage.tsx │ │ ├── list │ │ │ ├── BlogCommentListFilter.tsx │ │ │ ├── BlogCommentListItem.tsx │ │ │ ├── BlogCommentListPage.tsx │ │ │ ├── BlogCommentListTable.tsx │ │ │ └── BlogCommentListToolbar.tsx │ │ └── view │ │ │ ├── BlogCommentView.tsx │ │ │ ├── BlogCommentViewItem.tsx │ │ │ ├── BlogCommentViewPage.tsx │ │ │ └── BlogCommentViewToolbar.tsx │ │ ├── broker │ │ ├── BrokerTabs.tsx │ │ ├── autocomplete │ │ │ └── BrokerAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── BrokerForm.tsx │ │ │ ├── BrokerFormModal.tsx │ │ │ ├── BrokerFormPage.tsx │ │ │ ├── components │ │ │ │ ├── BrokerBaseForm.tsx │ │ │ │ ├── BrokerCharacteristicsForm.tsx │ │ │ │ ├── BrokerCheckboxFormInput.tsx │ │ │ │ ├── BrokerMarketsForm.tsx │ │ │ │ ├── BrokerOldForm.tsx │ │ │ │ ├── BrokerOverviewForm.tsx │ │ │ │ ├── BrokerPlatformForm.tsx │ │ │ │ ├── BrokerServiceForm.tsx │ │ │ │ ├── BrokerSpreadsForm.tsx │ │ │ │ └── BrokerTestForm.tsx │ │ │ └── schemas │ │ │ │ ├── BrokerCheckboxes.tsx │ │ │ │ ├── BrokerForexSignals.tsx │ │ │ │ └── FormSchema.tsx │ │ ├── importer │ │ │ └── BrokerImporterPage.tsx │ │ ├── list │ │ │ ├── BrokerListFilter.tsx │ │ │ ├── BrokerListItem.tsx │ │ │ ├── BrokerListPage.tsx │ │ │ ├── BrokerListTable.tsx │ │ │ └── BrokerListToolbar.tsx │ │ └── view │ │ │ ├── BrokerView.tsx │ │ │ ├── BrokerViewItem.tsx │ │ │ ├── BrokerViewPage.tsx │ │ │ ├── BrokerViewToolbar.tsx │ │ │ └── components │ │ │ └── BrokerBaseView.tsx │ │ ├── brokerArticle │ │ ├── autocomplete │ │ │ └── BrokerArticleAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── BrokerArticleForm.tsx │ │ │ ├── BrokerArticleFormModal.tsx │ │ │ └── BrokerArticleFormPage.tsx │ │ ├── importer │ │ │ └── BrokerArticleImporterPage.tsx │ │ ├── list │ │ │ ├── BrokerArticleListFilter.tsx │ │ │ ├── BrokerArticleListItem.tsx │ │ │ ├── BrokerArticleListPage.tsx │ │ │ ├── BrokerArticleListTable.tsx │ │ │ └── BrokerArticleListToolbar.tsx │ │ └── view │ │ │ ├── BrokerArticleView.tsx │ │ │ ├── BrokerArticleViewItem.tsx │ │ │ ├── BrokerArticleViewPage.tsx │ │ │ └── BrokerArticleViewToolbar.tsx │ │ ├── brokerPost │ │ ├── autocomplete │ │ │ └── BrokerPostAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── BrokerPostEditForm.tsx │ │ │ ├── BrokerPostFormModal.tsx │ │ │ ├── BrokerPostFormPage.tsx │ │ │ └── BrokerPostNewForm.tsx │ │ ├── importer │ │ │ └── BrokerPostImporterPage.tsx │ │ ├── list │ │ │ ├── BrokerPostListFilter.tsx │ │ │ ├── BrokerPostListItem.tsx │ │ │ ├── BrokerPostListPage.tsx │ │ │ ├── BrokerPostListTable.tsx │ │ │ └── BrokerPostListToolbar.tsx │ │ └── view │ │ │ ├── BrokerPostView.tsx │ │ │ ├── BrokerPostViewItem.tsx │ │ │ ├── BrokerPostViewPage.tsx │ │ │ └── BrokerPostViewToolbar.tsx │ │ ├── category │ │ ├── autocomplete │ │ │ └── CategoryAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── CategoryForm.tsx │ │ │ ├── CategoryFormModal.tsx │ │ │ └── CategoryFormPage.tsx │ │ ├── importer │ │ │ └── CategoryImporterPage.tsx │ │ ├── list │ │ │ ├── CategoryListFilter.tsx │ │ │ ├── CategoryListItem.tsx │ │ │ ├── CategoryListPage.tsx │ │ │ ├── CategoryListTable.tsx │ │ │ └── CategoryListToolbar.tsx │ │ └── view │ │ │ ├── CategoryView.tsx │ │ │ ├── CategoryViewItem.tsx │ │ │ ├── CategoryViewPage.tsx │ │ │ └── CategoryViewToolbar.tsx │ │ ├── dashboard │ │ ├── DashboardPage.tsx │ │ ├── RecentComments.tsx │ │ ├── RecentPosts.tsx │ │ └── SitemapRefresh.tsx │ │ ├── expertAdvisorTest │ │ ├── autocomplete │ │ │ └── ExpertAdvisorTestAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── ExpertAdvisorTestForm.tsx │ │ │ ├── ExpertAdvisorTestFormModal.tsx │ │ │ └── ExpertAdvisorTestFormPage.tsx │ │ ├── importer │ │ │ └── ExpertAdvisorTestImporterPage.tsx │ │ ├── list │ │ │ ├── ExpertAdvisorTestListFilter.tsx │ │ │ ├── ExpertAdvisorTestListItem.tsx │ │ │ ├── ExpertAdvisorTestListPage.tsx │ │ │ ├── ExpertAdvisorTestListTable.tsx │ │ │ └── ExpertAdvisorTestListToolbar.tsx │ │ └── view │ │ │ ├── ExpertAdvisorTestView.tsx │ │ │ ├── ExpertAdvisorTestViewItem.tsx │ │ │ ├── ExpertAdvisorTestViewPage.tsx │ │ │ └── ExpertAdvisorTestViewToolbar.tsx │ │ ├── home │ │ ├── Breadcrumb.tsx │ │ ├── BrokerArticlePage.tsx │ │ ├── CategoryPage.tsx │ │ ├── Contact.tsx │ │ ├── DefaultCategoryDescription.tsx │ │ ├── Footer.tsx │ │ ├── GeneralPage.tsx │ │ ├── HomeViewPage.tsx │ │ ├── ImageView.tsx │ │ ├── Layout.tsx │ │ ├── Meta.tsx │ │ ├── NormalPage.tsx │ │ ├── Redirect.tsx │ │ ├── blog │ │ │ ├── BlogDetailPage.tsx │ │ │ ├── BlogListPage.tsx │ │ │ └── CommentPage.tsx │ │ ├── broker │ │ │ ├── BrokerComparisonPage.tsx │ │ │ ├── BrokerListTable.tsx │ │ │ ├── BrokerPostPage.tsx │ │ │ ├── BrokerViewPage.tsx │ │ │ ├── ComparisonPage.tsx │ │ │ ├── comparisons │ │ │ │ ├── CompareCheckbox.tsx │ │ │ │ ├── CompareDetail.tsx │ │ │ │ ├── CompareOverview.tsx │ │ │ │ ├── CompareProfile.tsx │ │ │ │ ├── CompareRegion.tsx │ │ │ │ ├── CompareRegulation.tsx │ │ │ │ ├── CompareSection.tsx │ │ │ │ ├── CompareService.tsx │ │ │ │ ├── CompareSpreadsAndFees.tsx │ │ │ │ ├── CompareTradable.tsx │ │ │ │ └── CompareTradingPlatforms.tsx │ │ │ ├── components │ │ │ │ ├── BrokerCharacteristicsView.tsx │ │ │ │ ├── BrokerForexSignaleView.tsx │ │ │ │ ├── BrokerHeader.tsx │ │ │ │ ├── BrokerHomepageUrls.tsx │ │ │ │ ├── BrokerMarketsView.tsx │ │ │ │ ├── BrokerOverviewView.tsx │ │ │ │ ├── BrokerPlatformView.tsx │ │ │ │ ├── BrokerSection.tsx │ │ │ │ ├── BrokerServiceView.tsx │ │ │ │ ├── BrokerSpreadsView.tsx │ │ │ │ ├── SingleCheckbox.tsx │ │ │ │ └── TopBrokersView.tsx │ │ │ └── shared │ │ │ │ ├── AttachLink.tsx │ │ │ │ ├── AttrTypography.tsx │ │ │ │ ├── BrokerAddress.tsx │ │ │ │ ├── BrokerAttrs.tsx │ │ │ │ ├── BrokerCheckbox.tsx │ │ │ │ ├── BrokerContact.tsx │ │ │ │ ├── BrokerImages.tsx │ │ │ │ ├── BrokerLinks.tsx │ │ │ │ ├── BrokerRatingPercent.tsx │ │ │ │ ├── BrokerUpsides.tsx │ │ │ │ └── OverallRating.tsx │ │ ├── shared │ │ │ ├── CircleNumber.tsx │ │ │ └── DashBorder.tsx │ │ └── sidebar │ │ │ ├── Advisors.tsx │ │ │ ├── Category.tsx │ │ │ ├── ComparableBrokers.tsx │ │ │ ├── FeaturedBrokers.tsx │ │ │ ├── ForexSchool.tsx │ │ │ ├── ForexStrategy.tsx │ │ │ ├── MostRead.tsx │ │ │ ├── Promotion.tsx │ │ │ └── TopBrokers.tsx │ │ ├── layout │ │ ├── Header.tsx │ │ ├── I18nFlags.tsx │ │ ├── I18nSelect.tsx │ │ ├── Layout.tsx │ │ ├── Menu.tsx │ │ ├── UserMenu.tsx │ │ └── styles │ │ │ ├── ContentWrapper.tsx │ │ │ └── I18nFlagsWrapper.tsx │ │ ├── menus.tsx │ │ ├── navigation │ │ ├── autocomplete │ │ │ └── NavigationAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── NavigationForm.tsx │ │ │ ├── NavigationFormModal.tsx │ │ │ └── NavigationFormPage.tsx │ │ ├── importer │ │ │ └── NavigationImporterPage.tsx │ │ ├── list │ │ │ ├── NavigationListFilter.tsx │ │ │ ├── NavigationListItem.tsx │ │ │ ├── NavigationListPage.tsx │ │ │ ├── NavigationListTable.tsx │ │ │ └── NavigationListToolbar.tsx │ │ └── view │ │ │ ├── NavigationView.tsx │ │ │ ├── NavigationViewItem.tsx │ │ │ ├── NavigationViewPage.tsx │ │ │ └── NavigationViewToolbar.tsx │ │ ├── news │ │ ├── autocomplete │ │ │ └── NewsAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── NewsForm.tsx │ │ │ ├── NewsFormModal.tsx │ │ │ └── NewsFormPage.tsx │ │ ├── importer │ │ │ └── NewsImporterPage.tsx │ │ ├── list │ │ │ ├── NewsListFilter.tsx │ │ │ ├── NewsListItem.tsx │ │ │ ├── NewsListPage.tsx │ │ │ ├── NewsListTable.tsx │ │ │ └── NewsListToolbar.tsx │ │ └── view │ │ │ ├── NewsView.tsx │ │ │ ├── NewsViewItem.tsx │ │ │ ├── NewsViewPage.tsx │ │ │ └── NewsViewToolbar.tsx │ │ ├── openx │ │ ├── autocomplete │ │ │ └── OpenxAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── OpenxForm.tsx │ │ │ ├── OpenxFormModal.tsx │ │ │ └── OpenxFormPage.tsx │ │ ├── importer │ │ │ └── OpenxImporterPage.tsx │ │ ├── list │ │ │ ├── OpenxListFilter.tsx │ │ │ ├── OpenxListItem.tsx │ │ │ ├── OpenxListPage.tsx │ │ │ ├── OpenxListTable.tsx │ │ │ └── OpenxListToolbar.tsx │ │ └── view │ │ │ ├── OpenxView.tsx │ │ │ ├── OpenxViewItem.tsx │ │ │ ├── OpenxViewPage.tsx │ │ │ └── OpenxViewToolbar.tsx │ │ ├── page │ │ ├── autocomplete │ │ │ └── PageAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── PageForm.tsx │ │ │ ├── PageFormModal.tsx │ │ │ └── PageFormPage.tsx │ │ ├── importer │ │ │ └── PageImporterPage.tsx │ │ ├── list │ │ │ ├── PageListFilter.tsx │ │ │ ├── PageListItem.tsx │ │ │ ├── PageListPage.tsx │ │ │ ├── PageListTable.tsx │ │ │ └── PageListToolbar.tsx │ │ └── view │ │ │ ├── PageView.tsx │ │ │ ├── PageViewItem.tsx │ │ │ ├── PageViewPage.tsx │ │ │ └── PageViewToolbar.tsx │ │ ├── pageWarning │ │ ├── autocomplete │ │ │ └── PageWarningAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── PageWarningForm.tsx │ │ │ ├── PageWarningFormModal.tsx │ │ │ └── PageWarningFormPage.tsx │ │ ├── importer │ │ │ └── PageWarningImporterPage.tsx │ │ ├── list │ │ │ ├── PageWarningListFilter.tsx │ │ │ ├── PageWarningListItem.tsx │ │ │ ├── PageWarningListPage.tsx │ │ │ ├── PageWarningListTable.tsx │ │ │ └── PageWarningListToolbar.tsx │ │ └── view │ │ │ ├── PageWarningView.tsx │ │ │ ├── PageWarningViewItem.tsx │ │ │ ├── PageWarningViewPage.tsx │ │ │ └── PageWarningViewToolbar.tsx │ │ ├── plan │ │ ├── PlanCardFree.tsx │ │ ├── PlanCardPaid.tsx │ │ ├── PlanPage.tsx │ │ └── styles │ │ │ └── planCardStyles.tsx │ │ ├── promotion │ │ ├── autocomplete │ │ │ └── PromotionAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── PromotionForm.tsx │ │ │ ├── PromotionFormModal.tsx │ │ │ └── PromotionFormPage.tsx │ │ ├── importer │ │ │ └── PromotionImporterPage.tsx │ │ ├── list │ │ │ ├── PromotionListFilter.tsx │ │ │ ├── PromotionListItem.tsx │ │ │ ├── PromotionListPage.tsx │ │ │ ├── PromotionListTable.tsx │ │ │ └── PromotionListToolbar.tsx │ │ └── view │ │ │ ├── PromotionView.tsx │ │ │ ├── PromotionViewItem.tsx │ │ │ ├── PromotionViewPage.tsx │ │ │ └── PromotionViewToolbar.tsx │ │ ├── routes.tsx │ │ ├── settings │ │ ├── MaterialUIColorTool.tsx │ │ ├── SettingsForm.tsx │ │ ├── SettingsFormPage.tsx │ │ └── SettingsFormToolbar.tsx │ │ ├── shared │ │ ├── Breadcrumb.tsx │ │ ├── ColoredChip.tsx │ │ ├── CustomLoadable.tsx │ │ ├── LoadingComponent.tsx │ │ ├── ProgressBar.tsx │ │ ├── Spinner.tsx │ │ ├── __mocks__ │ │ │ └── message.tsx │ │ ├── components │ │ │ ├── Autocomplete.tsx │ │ │ ├── ColorBadge.tsx │ │ │ ├── DidMount.tsx │ │ │ ├── GradientTitle.tsx │ │ │ ├── HtmlTooltip.tsx │ │ │ └── OutOf.tsx │ │ ├── errors │ │ │ ├── Error403Page.tsx │ │ │ ├── Error404Page.tsx │ │ │ ├── Error500Page.tsx │ │ │ └── styles │ │ │ │ └── ErrorWrapper.tsx │ │ ├── filter │ │ │ ├── FilterAccordion.tsx │ │ │ └── FilterPreview.tsx │ │ ├── form │ │ │ ├── formErrors.tsx │ │ │ └── items │ │ │ │ ├── AutocompleteFormItem.tsx │ │ │ │ ├── AutocompleteInMemoryFormItem.tsx │ │ │ │ ├── CheckboxFormItem.tsx │ │ │ │ ├── ColorBadgeSelectFormItem.tsx │ │ │ │ ├── CustomStyledSelectFormItem.tsx │ │ │ │ ├── DatePickerFormItem.tsx │ │ │ │ ├── DatePickerRangeFormItem.tsx │ │ │ │ ├── EnumColorBadgeFormItem.tsx │ │ │ │ ├── EnumSliderFormItem.tsx │ │ │ │ ├── FilesFormItem.tsx │ │ │ │ ├── GroupFormItem.tsx │ │ │ │ ├── HtmlEditorFormItem.tsx │ │ │ │ ├── ImagesFormItem.tsx │ │ │ │ ├── InputFormItem.tsx │ │ │ │ ├── InputNumberFormItem.tsx │ │ │ │ ├── InputNumberRangeFormItem.tsx │ │ │ │ ├── InputRangeFormItem.tsx │ │ │ │ ├── LogoFormItem.tsx │ │ │ │ ├── PriceFormItem.tsx │ │ │ │ ├── PriceRangeFormItem.tsx │ │ │ │ ├── RadioFormItem.tsx │ │ │ │ ├── RatingFormItem.tsx │ │ │ │ ├── RatingRangeFormItem.tsx │ │ │ │ ├── ReCaptchaV2FormItem.tsx │ │ │ │ ├── SelectFormItem.tsx │ │ │ │ ├── SliderFormItem.tsx │ │ │ │ ├── SwitchFormItem.tsx │ │ │ │ ├── TagsFormItem.tsx │ │ │ │ ├── TextAreaFormItem.tsx │ │ │ │ ├── ViewFormItem.tsx │ │ │ │ └── shared │ │ │ │ └── reactSelectMaterialUi.tsx │ │ ├── importer │ │ │ ├── Importer.tsx │ │ │ ├── ImporterForm.tsx │ │ │ ├── ImporterList.tsx │ │ │ ├── ImporterRowStatus.tsx │ │ │ ├── ImporterStatus.tsx │ │ │ ├── ImporterToolbar.tsx │ │ │ └── styles │ │ │ │ ├── ImporterErrorStatusMessage.tsx │ │ │ │ └── ImporterStatusWrapper.tsx │ │ ├── message.tsx │ │ ├── modals │ │ │ ├── ConfirmModal.tsx │ │ │ └── ImageModal.tsx │ │ ├── moneyFormatter.tsx │ │ ├── routes │ │ │ ├── EmailUnverifiedRoute.tsx │ │ │ ├── EmptyPermissionsRoute.tsx │ │ │ ├── EmptyTenantRoute.tsx │ │ │ ├── FrontEndRoute.tsx │ │ │ ├── PrivateRoute.tsx │ │ │ ├── PublicRoute.tsx │ │ │ └── RoutesComponent.tsx │ │ ├── styles │ │ │ ├── FilterWrapper.tsx │ │ │ ├── FormWrapper.tsx │ │ │ ├── PageTitle.tsx │ │ │ ├── StyledRating.tsx │ │ │ ├── ToolbarWrapper.tsx │ │ │ ├── printScrollBarColorStyles.tsx │ │ │ └── react-file-icon-styles.ts │ │ ├── tab │ │ │ └── TabPanel.tsx │ │ ├── table │ │ │ ├── FileListView.tsx │ │ │ ├── ImagesListView.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── PriceListItem.tsx │ │ │ ├── RatingListItem.tsx │ │ │ ├── TableCellCustom.tsx │ │ │ └── styles │ │ │ │ └── PaginationWrapper.tsx │ │ ├── uploaders │ │ │ ├── DragAndDropUploaderArea.tsx │ │ │ ├── FilesUploader.tsx │ │ │ └── ImagesUploader.tsx │ │ ├── urlfy.tsx │ │ └── view │ │ │ ├── AuthorView.tsx │ │ │ ├── CheckboxViewItem.tsx │ │ │ ├── CustomViewItem.tsx │ │ │ ├── EnumColorBadgeViewItem.tsx │ │ │ ├── FieldSetViewItem.tsx │ │ │ ├── FilesViewItem.tsx │ │ │ ├── HtmlView.tsx │ │ │ ├── HtmlViewItem.tsx │ │ │ ├── ImagesViewItem.tsx │ │ │ ├── LogoViewItem.tsx │ │ │ ├── NoViewItem.tsx │ │ │ ├── PageContent.tsx │ │ │ ├── PriceViewItem.tsx │ │ │ ├── RatingViewItem.tsx │ │ │ └── TextViewItem.tsx │ │ ├── tenant │ │ ├── form │ │ │ ├── TenantForm.tsx │ │ │ └── TenantFormPage.tsx │ │ └── list │ │ │ ├── TenantListFilter.tsx │ │ │ ├── TenantListPage.tsx │ │ │ ├── TenantListTable.tsx │ │ │ └── TenantListToolbar.tsx │ │ ├── trackingParameter │ │ ├── autocomplete │ │ │ └── TrackingParameterAutocompleteFormItem.tsx │ │ ├── form │ │ │ ├── TrackingParameterForm.tsx │ │ │ ├── TrackingParameterFormModal.tsx │ │ │ └── TrackingParameterFormPage.tsx │ │ ├── importer │ │ │ └── TrackingParameterImporterPage.tsx │ │ ├── list │ │ │ ├── TrackingParameterListFilter.tsx │ │ │ ├── TrackingParameterListItem.tsx │ │ │ ├── TrackingParameterListPage.tsx │ │ │ ├── TrackingParameterListTable.tsx │ │ │ └── TrackingParameterListToolbar.tsx │ │ └── view │ │ │ ├── TrackingParameterView.tsx │ │ │ ├── TrackingParameterViewItem.tsx │ │ │ ├── TrackingParameterViewPage.tsx │ │ │ └── TrackingParameterViewToolbar.tsx │ │ └── user │ │ ├── autocomplete │ │ └── UserAutocompleteFormItem.tsx │ │ ├── edit │ │ ├── UserEditForm.tsx │ │ └── UserEditPage.tsx │ │ ├── importer │ │ └── UserImporterPage.tsx │ │ ├── list │ │ ├── UserFilter.tsx │ │ ├── UserListItem.tsx │ │ ├── UserPage.tsx │ │ ├── UserTable.tsx │ │ └── UserToolbar.tsx │ │ ├── new │ │ ├── UserNewForm.tsx │ │ ├── UserNewFormModal.tsx │ │ └── UserNewPage.tsx │ │ └── view │ │ ├── UserStatusView.tsx │ │ ├── UserView.tsx │ │ ├── UserViewItem.tsx │ │ ├── UserViewPage.tsx │ │ └── UserViewToolbar.tsx ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── api │ ├── affiliateLink │ │ ├── affiliateLinkAutocomplete.ts │ │ ├── affiliateLinkCreate.ts │ │ ├── affiliateLinkDestroy.ts │ │ ├── affiliateLinkFind.ts │ │ ├── affiliateLinkHome.ts │ │ ├── affiliateLinkImport.ts │ │ ├── affiliateLinkList.ts │ │ ├── affiliateLinkUpdate.ts │ │ └── index.ts │ ├── apiDocumentation.ts │ ├── apiRateLimiter.ts │ ├── apiResponseHandler.ts │ ├── auditLog │ │ ├── auditLogList.ts │ │ └── index.ts │ ├── auth │ │ ├── authContact.ts │ │ ├── authMe.ts │ │ ├── authPasswordChange.ts │ │ ├── authPasswordReset.ts │ │ ├── authSendEmailAddressVerificationEmail.ts │ │ ├── authSendPasswordResetEmail.ts │ │ ├── authSignIn.ts │ │ ├── authSignUp.ts │ │ ├── authSocial.ts │ │ ├── authUpdateProfile.ts │ │ ├── authVerifyEmail.ts │ │ └── index.ts │ ├── author │ │ ├── authorAutocomplete.ts │ │ ├── authorCreate.ts │ │ ├── authorDestroy.ts │ │ ├── authorFind.ts │ │ ├── authorFirst.ts │ │ ├── authorImport.ts │ │ ├── authorList.ts │ │ ├── authorUpdate.ts │ │ └── index.ts │ ├── blog │ │ ├── blogAutocomplete.ts │ │ ├── blogContent.ts │ │ ├── blogCreate.ts │ │ ├── blogDestroy.ts │ │ ├── blogFind.ts │ │ ├── blogHome.ts │ │ ├── blogImport.ts │ │ ├── blogList.ts │ │ ├── blogUpdate.ts │ │ └── index.ts │ ├── blogComment │ │ ├── blogCommentAutocomplete.ts │ │ ├── blogCommentCreate.ts │ │ ├── blogCommentDestroy.ts │ │ ├── blogCommentFind.ts │ │ ├── blogCommentHome.ts │ │ ├── blogCommentImport.ts │ │ ├── blogCommentList.ts │ │ ├── blogCommentReview.ts │ │ ├── blogCommentSpam.ts │ │ ├── blogCommentUpdate.ts │ │ └── index.ts │ ├── broker │ │ ├── brokerAutocomplete.ts │ │ ├── brokerComparable.ts │ │ ├── brokerCreate.ts │ │ ├── brokerDestroy.ts │ │ ├── brokerFeatured.ts │ │ ├── brokerFind.ts │ │ ├── brokerHome.ts │ │ ├── brokerImport.ts │ │ ├── brokerList.ts │ │ ├── brokerTop.ts │ │ ├── brokerUpdate.ts │ │ ├── brokerView.ts │ │ └── index.ts │ ├── brokerArticle │ │ ├── brokerArticleAutocomplete.ts │ │ ├── brokerArticleCreate.ts │ │ ├── brokerArticleDestroy.ts │ │ ├── brokerArticleFind.ts │ │ ├── brokerArticleHome.ts │ │ ├── brokerArticleImport.ts │ │ ├── brokerArticleList.ts │ │ ├── brokerArticleUpdate.ts │ │ └── index.ts │ ├── brokerPost │ │ ├── brokerPostAutocomplete.ts │ │ ├── brokerPostCreate.ts │ │ ├── brokerPostDestroy.ts │ │ ├── brokerPostFind.ts │ │ ├── brokerPostHome.ts │ │ ├── brokerPostImport.ts │ │ ├── brokerPostList.ts │ │ ├── brokerPostReview.ts │ │ ├── brokerPostSpam.ts │ │ ├── brokerPostUpdate.ts │ │ └── index.ts │ ├── category │ │ ├── categoryAutocomplete.ts │ │ ├── categoryCreate.ts │ │ ├── categoryDestroy.ts │ │ ├── categoryFind.ts │ │ ├── categoryFooter.ts │ │ ├── categoryHome.ts │ │ ├── categoryImport.ts │ │ ├── categoryList.ts │ │ ├── categorySidebar.ts │ │ ├── categoryUpdate.ts │ │ └── index.ts │ ├── expertAdvisorTest │ │ ├── expertAdvisorTestAutocomplete.ts │ │ ├── expertAdvisorTestCreate.ts │ │ ├── expertAdvisorTestDestroy.ts │ │ ├── expertAdvisorTestFind.ts │ │ ├── expertAdvisorTestImport.ts │ │ ├── expertAdvisorTestList.ts │ │ ├── expertAdvisorTestUpdate.ts │ │ └── index.ts │ ├── file │ │ ├── ckeditor.ts │ │ ├── credentials.ts │ │ ├── index.ts │ │ └── localhost │ │ │ ├── download.ts │ │ │ └── upload.ts │ ├── index.ts │ ├── mui │ │ ├── index.ts │ │ ├── muiFind.ts │ │ └── muiSave.ts │ ├── navigation │ │ ├── index.ts │ │ ├── navigationAutocomplete.ts │ │ ├── navigationCreate.ts │ │ ├── navigationDestroy.ts │ │ ├── navigationFind.ts │ │ ├── navigationForexSchool.ts │ │ ├── navigationForexStrategy.ts │ │ ├── navigationHome.ts │ │ ├── navigationImport.ts │ │ ├── navigationList.ts │ │ ├── navigationMostRead.ts │ │ └── navigationUpdate.ts │ ├── news │ │ ├── index.ts │ │ ├── newsAutocomplete.ts │ │ ├── newsCreate.ts │ │ ├── newsDestroy.ts │ │ ├── newsFind.ts │ │ ├── newsImport.ts │ │ ├── newsList.ts │ │ └── newsUpdate.ts │ ├── openx │ │ ├── index.ts │ │ ├── openxAutocomplete.ts │ │ ├── openxCreate.ts │ │ ├── openxDestroy.ts │ │ ├── openxFind.ts │ │ ├── openxImport.ts │ │ ├── openxList.ts │ │ └── openxUpdate.ts │ ├── page │ │ ├── index.ts │ │ ├── pageAutocomplete.ts │ │ ├── pageCreate.ts │ │ ├── pageDestroy.ts │ │ ├── pageFind.ts │ │ ├── pageHome.ts │ │ ├── pageImport.ts │ │ ├── pageList.ts │ │ └── pageUpdate.ts │ ├── pageWarning │ │ ├── index.ts │ │ ├── pageWarningAutocomplete.ts │ │ ├── pageWarningCreate.ts │ │ ├── pageWarningDestroy.ts │ │ ├── pageWarningFind.ts │ │ ├── pageWarningImport.ts │ │ ├── pageWarningList.ts │ │ └── pageWarningUpdate.ts │ ├── plan │ │ ├── index.ts │ │ └── stripe │ │ │ ├── checkout.ts │ │ │ ├── portal.ts │ │ │ └── webhook.ts │ ├── promotion │ │ ├── index.ts │ │ ├── promotionAutocomplete.ts │ │ ├── promotionCreate.ts │ │ ├── promotionDestroy.ts │ │ ├── promotionFind.ts │ │ ├── promotionHome.ts │ │ ├── promotionImport.ts │ │ ├── promotionList.ts │ │ └── promotionUpdate.ts │ ├── settings │ │ ├── index.ts │ │ ├── settingsFind.ts │ │ └── settingsSave.ts │ ├── sitemap │ │ ├── index.ts │ │ └── sitemapRefresh.ts │ ├── tenant │ │ ├── index.ts │ │ ├── tenantCreate.ts │ │ ├── tenantDestroy.ts │ │ ├── tenantFind.ts │ │ ├── tenantInvitationAccept.ts │ │ ├── tenantInvitationDecline.ts │ │ ├── tenantList.ts │ │ └── tenantUpdate.ts │ ├── trackingParameter │ │ ├── index.ts │ │ ├── trackingParameterAutocomplete.ts │ │ ├── trackingParameterCreate.ts │ │ ├── trackingParameterDestroy.ts │ │ ├── trackingParameterFind.ts │ │ ├── trackingParameterImport.ts │ │ ├── trackingParameterList.ts │ │ └── trackingParameterUpdate.ts │ └── user │ │ ├── index.ts │ │ ├── userAutocomplete.ts │ │ ├── userCreate.ts │ │ ├── userDestroy.ts │ │ ├── userEdit.ts │ │ ├── userFind.ts │ │ ├── userImport.ts │ │ └── userList.ts ├── config │ └── index.ts ├── database │ ├── databaseConnection.ts │ ├── migrations │ │ └── create.ts │ ├── models │ │ ├── affiliate_link.ts │ │ ├── affiliate_link_heartbeat.ts │ │ ├── affiliate_tracking_identifier.ts │ │ ├── auditLog.ts │ │ ├── author.ts │ │ ├── blog_comment.ts │ │ ├── blog_entries_broker.ts │ │ ├── blog_entry.ts │ │ ├── blog_image.ts │ │ ├── broker.ts │ │ ├── broker_address.ts │ │ ├── broker_article.ts │ │ ├── broker_bank.ts │ │ ├── broker_certificate.ts │ │ ├── broker_certificate_image.ts │ │ ├── broker_checkbox.ts │ │ ├── broker_creterias.ts │ │ ├── broker_currency_pair.ts │ │ ├── broker_deposit.ts │ │ ├── broker_deposit_guarantee.ts │ │ ├── broker_dynamic_field.ts │ │ ├── broker_email.ts │ │ ├── broker_fax.ts │ │ ├── broker_feature.ts │ │ ├── broker_forex_signal.ts │ │ ├── broker_image.ts │ │ ├── broker_metas.ts │ │ ├── broker_minimum_trading_unit.ts │ │ ├── broker_order_execution.ts │ │ ├── broker_order_type.ts │ │ ├── broker_phone.ts │ │ ├── broker_post.ts │ │ ├── broker_rating.ts │ │ ├── broker_regulatory_authority.ts │ │ ├── broker_spread.ts │ │ ├── broker_trade_platform.ts │ │ ├── broker_trade_store.ts │ │ ├── broker_upside.ts │ │ ├── broker_video.ts │ │ ├── brokers_category.ts │ │ ├── category.ts │ │ ├── category_description.ts │ │ ├── expert_advisor_test.ts │ │ ├── expert_advisor_test_image.ts │ │ ├── expert_advisor_test_metas.ts │ │ ├── file.ts │ │ ├── index.ts │ │ ├── mui.ts │ │ ├── navigation.ts │ │ ├── news.ts │ │ ├── news_image.ts │ │ ├── openx_banner.ts │ │ ├── page.ts │ │ ├── page_image.ts │ │ ├── page_related_link.ts │ │ ├── page_warning.ts │ │ ├── promotion.ts │ │ ├── settings.ts │ │ ├── tenant.ts │ │ ├── tenantUser.ts │ │ └── user.ts │ ├── repositories │ │ ├── IRepositoryOptions.ts │ │ ├── affiliateLinkRepository.ts │ │ ├── auditLogRepository.ts │ │ ├── authorRepository.ts │ │ ├── blogBrokerRepository.ts │ │ ├── blogCommentRepository.ts │ │ ├── blogRepository.ts │ │ ├── brokerAddressRepository.ts │ │ ├── brokerArticleRepository.ts │ │ ├── brokerBankRepository.ts │ │ ├── brokerCertificateRepository.ts │ │ ├── brokerCheckboxRepository.ts │ │ ├── brokerCreteriaRepository.ts │ │ ├── brokerCurrencyPairRepository.ts │ │ ├── brokerDepositGuaranteeRepository.ts │ │ ├── brokerDepositRepository.ts │ │ ├── brokerEmailRepository.ts │ │ ├── brokerFaxRepository.ts │ │ ├── brokerFeatureRepository.ts │ │ ├── brokerForexSignalRepository.ts │ │ ├── brokerMetaRepository.ts │ │ ├── brokerMinimumTradingUnitRepository.ts │ │ ├── brokerOrderTypeRepository.ts │ │ ├── brokerPhoneRepository.ts │ │ ├── brokerPostRepository.ts │ │ ├── brokerRegulatoryAuthorityRepository.ts │ │ ├── brokerRepository.ts │ │ ├── brokerSpreadRepository.ts │ │ ├── brokerTradePlatformRepository.ts │ │ ├── brokerTradeStoreRepository.ts │ │ ├── brokerUpsideRepository.ts │ │ ├── brokerVideoRepository.ts │ │ ├── brokersCategoryRepository.ts │ │ ├── categoryDescriptionRepository.ts │ │ ├── categoryRepository.ts │ │ ├── expertAdvisorTestMetaRepository.ts │ │ ├── expertAdvisorTestRepository.ts │ │ ├── extends │ │ │ ├── navigationRepositoryEx.ts │ │ │ └── pageRepositoryEx.ts │ │ ├── fileRepository.ts │ │ ├── imageMigrationRepository.ts │ │ ├── muiRepository.ts │ │ ├── navigationRepository.ts │ │ ├── newsRepository.ts │ │ ├── openxRepository.ts │ │ ├── pageRelatedLinkRepository.ts │ │ ├── pageRepository.ts │ │ ├── pageWarningRepository.ts │ │ ├── promotionRepository.ts │ │ ├── sequelizeRepository.ts │ │ ├── settingsRepository.ts │ │ ├── tenantRepository.ts │ │ ├── tenantUserRepository.ts │ │ ├── trackingParameterRepository.ts │ │ └── userRepository.ts │ └── utils │ │ ├── orderByUtils.ts │ │ ├── sequelizeArrayUtils.ts │ │ ├── sequelizeFilterUtils.ts │ │ ├── sequelizeUtils.ts │ │ └── userTenantUtils.ts ├── documentation │ └── openapi.json ├── errors │ ├── Error400.ts │ ├── Error401.ts │ ├── Error403.ts │ └── Error404.ts ├── i18n │ ├── de.ts │ └── index.ts ├── middlewares │ ├── authMiddleware.ts │ ├── databaseMiddleware.ts │ ├── languageMiddleware.ts │ └── tenantMiddleware.ts ├── security │ ├── permissions.ts │ ├── plans.ts │ ├── roles.ts │ └── storage.ts ├── seo │ ├── home │ │ ├── Breadcrumb.tsx │ │ ├── BrokerArticlePage.tsx │ │ ├── CategoryPage.tsx │ │ ├── Contact.tsx │ │ ├── DefaultCategoryDescription.tsx │ │ ├── GeneralPage.tsx │ │ ├── HomeViewPage.tsx │ │ ├── Layout.tsx │ │ ├── Meta.tsx │ │ ├── NormalPage.tsx │ │ ├── blog │ │ │ ├── BlogDetailPage.tsx │ │ │ └── BlogListPage.tsx │ │ ├── broker │ │ │ ├── BrokerComparisonPage.tsx │ │ │ ├── BrokerListTable.tsx │ │ │ ├── BrokerTabs.tsx │ │ │ ├── BrokerViewPage.tsx │ │ │ ├── ComparisonPage.tsx │ │ │ ├── comparisons │ │ │ │ ├── CompareCheckbox.tsx │ │ │ │ ├── CompareDetail.tsx │ │ │ │ ├── CompareOverview.tsx │ │ │ │ ├── CompareProfile.tsx │ │ │ │ ├── CompareRegion.tsx │ │ │ │ ├── CompareRegulation.tsx │ │ │ │ ├── CompareSection.tsx │ │ │ │ ├── CompareService.tsx │ │ │ │ ├── CompareSpreadsAndFees.tsx │ │ │ │ ├── CompareTradable.tsx │ │ │ │ └── CompareTradingPlatforms.tsx │ │ │ ├── components │ │ │ │ ├── BrokerCharacteristicsView.tsx │ │ │ │ ├── BrokerForexSignaleView.tsx │ │ │ │ ├── BrokerHeader.tsx │ │ │ │ ├── BrokerHomepageUrls.tsx │ │ │ │ ├── BrokerMarketsView.tsx │ │ │ │ ├── BrokerOverviewView.tsx │ │ │ │ ├── BrokerPlatformView.tsx │ │ │ │ ├── BrokerSection.tsx │ │ │ │ ├── BrokerServiceView.tsx │ │ │ │ ├── BrokerSpreadsView.tsx │ │ │ │ ├── SingleCheckbox.tsx │ │ │ │ └── TopBrokersView.tsx │ │ │ └── shared │ │ │ │ ├── AttachLink.tsx │ │ │ │ ├── AttrTypography.tsx │ │ │ │ ├── BrokerAddress.tsx │ │ │ │ ├── BrokerAttrs.tsx │ │ │ │ ├── BrokerCheckbox.tsx │ │ │ │ ├── BrokerContact.tsx │ │ │ │ ├── BrokerImages.tsx │ │ │ │ ├── BrokerLinks.tsx │ │ │ │ ├── BrokerRatingPercent.tsx │ │ │ │ ├── BrokerUpsides.tsx │ │ │ │ └── OverallRating.tsx │ │ └── shared │ │ │ ├── AuthorView.tsx │ │ │ ├── CheckboxViewItem.tsx │ │ │ ├── CircleNumber.tsx │ │ │ ├── HtmlView.tsx │ │ │ ├── ImageView.tsx │ │ │ ├── OutOf.tsx │ │ │ ├── RatingViewItem.tsx │ │ │ └── StyledRating.tsx │ ├── i18n │ │ ├── de.tsx │ │ └── index.tsx │ ├── index.tsx │ └── utils.ts ├── server.ts ├── services │ ├── IServiceOptions.ts │ ├── affiliateLinkService.ts │ ├── auth │ │ ├── authProfileEditor.ts │ │ └── authService.ts │ ├── authorService.ts │ ├── blogCommentService.ts │ ├── blogService.ts │ ├── brokerArticleService.ts │ ├── brokerPostService.ts │ ├── brokerService.ts │ ├── categoryService.ts │ ├── emailSender.ts │ ├── expertAdvisorTestService.ts │ ├── file │ │ ├── awsFileStorage.ts │ │ ├── fileStorage.ts │ │ ├── googleCloudFileStorage.ts │ │ └── localhostFileStorage.ts │ ├── migrationService.ts │ ├── muiService.ts │ ├── navigationService.ts │ ├── newsService.ts │ ├── openxService.ts │ ├── pageService.ts │ ├── pageWarningService.ts │ ├── promotionService.ts │ ├── recaptcha │ │ └── ReCaptchaV2Service.ts │ ├── settingsService.ts │ ├── sitemap │ │ └── sitemapService.ts │ ├── tenantService.ts │ ├── tenantSubdomain.ts │ ├── trackingParameterService.ts │ └── user │ │ ├── permissionChecker.ts │ │ ├── userCreator.ts │ │ ├── userDestroyer.ts │ │ ├── userEditor.ts │ │ └── userImporter.ts └── utils │ ├── dateTimeUtils.ts │ ├── pathUtils.ts │ └── userUtils.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | https://scaffoldhub.io/license 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web:npm start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/README.md -------------------------------------------------------------------------------- /email-templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/email-templates/contact.html -------------------------------------------------------------------------------- /email-templates/emailAddressVerification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/email-templates/emailAddressVerification.html -------------------------------------------------------------------------------- /email-templates/invitation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/email-templates/invitation.html -------------------------------------------------------------------------------- /email-templates/passwordReset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/email-templates/passwordReset.html -------------------------------------------------------------------------------- /email-templates/reviewNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/email-templates/reviewNotification.html -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /frontend/compress-cra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/compress-cra.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/.gitignore: -------------------------------------------------------------------------------- 1 | /files 2 | -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/google2bd0bc85278ec759.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/google2bd0bc85278ec759.html -------------------------------------------------------------------------------- /frontend/public/google2fa48b038f650556.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/google2fa48b038f650556.html -------------------------------------------------------------------------------- /frontend/public/images/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/403.svg -------------------------------------------------------------------------------- /frontend/public/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/404.svg -------------------------------------------------------------------------------- /frontend/public/images/500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/500.svg -------------------------------------------------------------------------------- /frontend/public/images/all-infos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/all-infos.png -------------------------------------------------------------------------------- /frontend/public/images/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/balance.png -------------------------------------------------------------------------------- /frontend/public/images/crowd-of-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/crowd-of-users.png -------------------------------------------------------------------------------- /frontend/public/images/emailUnverified.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/emailUnverified.jpg -------------------------------------------------------------------------------- /frontend/public/images/emptyPermissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/emptyPermissions.jpg -------------------------------------------------------------------------------- /frontend/public/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/facebook.png -------------------------------------------------------------------------------- /frontend/public/images/files/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/files/pdf.png -------------------------------------------------------------------------------- /frontend/public/images/files/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/files/pdf.svg -------------------------------------------------------------------------------- /frontend/public/images/flags/Deutschland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/flags/Deutschland.png -------------------------------------------------------------------------------- /frontend/public/images/flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/flags/README.md -------------------------------------------------------------------------------- /frontend/public/images/flags/United-States.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/flags/United-States.png -------------------------------------------------------------------------------- /frontend/public/images/forgotPassword.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/forgotPassword.jpg -------------------------------------------------------------------------------- /frontend/public/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/google.png -------------------------------------------------------------------------------- /frontend/public/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/header.png -------------------------------------------------------------------------------- /frontend/public/images/home-box-cfd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/home-box-cfd.png -------------------------------------------------------------------------------- /frontend/public/images/home-box-forex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/home-box-forex.png -------------------------------------------------------------------------------- /frontend/public/images/invitation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/invitation.jpg -------------------------------------------------------------------------------- /frontend/public/images/ranking/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/ranking/1.png -------------------------------------------------------------------------------- /frontend/public/images/ranking/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/ranking/2.png -------------------------------------------------------------------------------- /frontend/public/images/ranking/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/ranking/3.png -------------------------------------------------------------------------------- /frontend/public/images/signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/signin.jpg -------------------------------------------------------------------------------- /frontend/public/images/signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/signup.jpg -------------------------------------------------------------------------------- /frontend/public/images/star-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/star-fill.png -------------------------------------------------------------------------------- /frontend/public/images/star-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/star-grey.png -------------------------------------------------------------------------------- /frontend/public/images/tenant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/tenant.jpg -------------------------------------------------------------------------------- /frontend/public/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/images/twitter.svg -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/CookieConsentModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/CookieConsentModal.tsx -------------------------------------------------------------------------------- /frontend/src/CookieConsentTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/CookieConsentTool.tsx -------------------------------------------------------------------------------- /frontend/src/ScrollTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/ScrollTo.tsx -------------------------------------------------------------------------------- /frontend/src/ScrollTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/ScrollTop.tsx -------------------------------------------------------------------------------- /frontend/src/assets/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/assets/resources.tsx -------------------------------------------------------------------------------- /frontend/src/assets/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/assets/scrollbar.css -------------------------------------------------------------------------------- /frontend/src/config/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/config/common.tsx -------------------------------------------------------------------------------- /frontend/src/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/config/index.tsx -------------------------------------------------------------------------------- /frontend/src/config/localhost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/config/localhost.tsx -------------------------------------------------------------------------------- /frontend/src/config/production.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/config/production.tsx -------------------------------------------------------------------------------- /frontend/src/config/staging.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/config/staging.tsx -------------------------------------------------------------------------------- /frontend/src/config/testenv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/config/testenv.tsx -------------------------------------------------------------------------------- /frontend/src/dnd-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/dnd-context.tsx -------------------------------------------------------------------------------- /frontend/src/i18n/de.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/i18n/de.tsx -------------------------------------------------------------------------------- /frontend/src/i18n/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/i18n/index.tsx -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auditLog/auditLogActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auditLog/auditLogActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auditLog/auditLogReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auditLog/auditLogReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auditLog/auditLogSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auditLog/auditLogSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auditLog/auditLogService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auditLog/auditLogService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authCurrentTenant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authCurrentTenant.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authInitializer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authInitializer.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authInvitationToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authInvitationToken.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/authToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/authToken.tsx -------------------------------------------------------------------------------- /frontend/src/modules/auth/permissionChecker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/auth/permissionChecker.tsx -------------------------------------------------------------------------------- /frontend/src/modules/author/authorEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/author/authorEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/author/authorReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/author/authorReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/author/authorSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/author/authorSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/author/authorService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/author/authorService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/blogEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/blogEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/blogReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/blogReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/blogSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/blogSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/blogService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/blogService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/find/blogFindActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/find/blogFindActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/find/blogFindReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/find/blogFindReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/form/blogFormActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/form/blogFormActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/form/blogFormReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/form/blogFormReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/home/blogHomeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/home/blogHomeActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/home/blogHomeReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/home/blogHomeReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/list/blogListActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/list/blogListActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/list/blogListReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/list/blogListReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/view/blogViewActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/view/blogViewActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/blog/view/blogViewReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/blog/view/blogViewReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/broker/brokerEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/broker/brokerEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/broker/brokerReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/broker/brokerReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/broker/brokerSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/broker/brokerSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/broker/brokerService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/broker/brokerService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/broker/brokerUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/broker/brokerUtils.tsx -------------------------------------------------------------------------------- /frontend/src/modules/category/categoryReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/category/categoryReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/category/categorySelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/category/categorySelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/category/categoryService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/category/categoryService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/form/formActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/form/formActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/form/formReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/form/formReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/form/formSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/form/formSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/initializers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/initializers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/layout/layoutActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/layout/layoutActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/layout/layoutReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/layout/layoutReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/layout/layoutSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/layout/layoutSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/mui/muiActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/mui/muiActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/mui/muiReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/mui/muiReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/mui/muiSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/mui/muiSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/mui/muiService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/mui/muiService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/navigation/navigationUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/navigation/navigationUtils.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/form/newsFormActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/form/newsFormActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/form/newsFormReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/form/newsFormReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/list/newsListActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/list/newsListActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/list/newsListReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/list/newsListReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/newsEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/newsEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/newsReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/newsReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/newsSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/newsSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/newsService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/newsService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/view/newsViewActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/view/newsViewActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/news/view/newsViewReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/news/view/newsViewReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/openx/openxEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/openx/openxEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/openx/openxReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/openx/openxReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/openx/openxSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/openx/openxSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/openx/openxService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/openx/openxService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/openx/openxUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/openx/openxUtils.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/form/pageFormActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/form/pageFormActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/form/pageFormReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/form/pageFormReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/home/pageHomeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/home/pageHomeActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/home/pageHomeReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/home/pageHomeReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/list/pageListActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/list/pageListActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/list/pageListReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/list/pageListReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/pageEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/pageEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/pageReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/pageReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/pageSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/pageSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/pageService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/pageService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/view/pageViewActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/view/pageViewActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/page/view/pageViewReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/page/view/pageViewReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/plan/planActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/plan/planActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/plan/planReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/plan/planReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/plan/planSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/plan/planSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/plan/planService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/plan/planService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/reducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/reducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/shared/axios/authAxios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/shared/axios/authAxios.tsx -------------------------------------------------------------------------------- /frontend/src/modules/shared/error/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/shared/error/errors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/shared/excel/excel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/shared/excel/excel.tsx -------------------------------------------------------------------------------- /frontend/src/modules/sitemap/sitemapActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/sitemap/sitemapActions.tsx -------------------------------------------------------------------------------- /frontend/src/modules/sitemap/sitemapReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/sitemap/sitemapReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/sitemap/sitemapService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/sitemap/sitemapService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/store.tsx -------------------------------------------------------------------------------- /frontend/src/modules/tenant/tenantReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/tenant/tenantReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/tenant/tenantSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/tenant/tenantSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/tenant/tenantService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/tenant/tenantService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/tenant/tenantSubdomain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/tenant/tenantSubdomain.tsx -------------------------------------------------------------------------------- /frontend/src/modules/user/userEnumerators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/user/userEnumerators.tsx -------------------------------------------------------------------------------- /frontend/src/modules/user/userReducers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/user/userReducers.tsx -------------------------------------------------------------------------------- /frontend/src/modules/user/userSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/user/userSelectors.tsx -------------------------------------------------------------------------------- /frontend/src/modules/user/userService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/user/userService.tsx -------------------------------------------------------------------------------- /frontend/src/modules/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/modules/utils.tsx -------------------------------------------------------------------------------- /frontend/src/mui/assets/images/bg-pricing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/images/bg-pricing.jpg -------------------------------------------------------------------------------- /frontend/src/mui/assets/images/bg-profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/images/bg-profile.jpeg -------------------------------------------------------------------------------- /frontend/src/mui/assets/images/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/images/down-arrow.svg -------------------------------------------------------------------------------- /frontend/src/mui/assets/images/ivancik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/images/ivancik.jpg -------------------------------------------------------------------------------- /frontend/src/mui/assets/images/logos/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/images/logos/visa.png -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme-dark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme-dark/index.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme-dark/theme-rtl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme-dark/theme-rtl.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/base/borders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/base/borders.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/base/boxShadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/base/boxShadows.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/base/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/base/colors.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/base/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/base/globals.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/base/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/base/typography.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/components/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/components/icon.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/components/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/components/link.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/functions/rgba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/functions/rgba.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/index.ts -------------------------------------------------------------------------------- /frontend/src/mui/assets/theme/theme-rtl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/assets/theme/theme-rtl.ts -------------------------------------------------------------------------------- /frontend/src/mui/components/MDAlert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDAlert/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDAvatar/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDBadge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDBadge/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDBadgeDot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDBadgeDot/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDBox/MDBoxRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDBox/MDBoxRoot.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDBox/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDButton/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDDropzone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDDropzone/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDEditor/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDInput/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDProgress/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/components/MDSnackbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/components/MDSnackbar/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Breadcrumbs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Breadcrumbs/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Configurator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Configurator/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Footer/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Layouts/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Layouts/Footer/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Sidenav/SidenavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Sidenav/SidenavItem.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Sidenav/SidenavList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Sidenav/SidenavList.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Sidenav/SidenavRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Sidenav/SidenavRoot.tsx -------------------------------------------------------------------------------- /frontend/src/mui/shared/Sidenav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/shared/Sidenav/index.tsx -------------------------------------------------------------------------------- /frontend/src/mui/types/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/types/images.d.ts -------------------------------------------------------------------------------- /frontend/src/mui/types/mui-theme.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/types/mui-theme.d.ts -------------------------------------------------------------------------------- /frontend/src/mui/types/react-images-viewer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/types/react-images-viewer.d.ts -------------------------------------------------------------------------------- /frontend/src/mui/types/react-jvectormap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/types/react-jvectormap.d.ts -------------------------------------------------------------------------------- /frontend/src/mui/types/react-kanban.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/types/react-kanban.d.ts -------------------------------------------------------------------------------- /frontend/src/mui/types/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/mui/types/react-table-config.d.ts -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/security/permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/security/permissions.tsx -------------------------------------------------------------------------------- /frontend/src/security/plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/security/plans.tsx -------------------------------------------------------------------------------- /frontend/src/security/roles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/security/roles.tsx -------------------------------------------------------------------------------- /frontend/src/security/storage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/security/storage.tsx -------------------------------------------------------------------------------- /frontend/src/setupTests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/setupTests.tsx -------------------------------------------------------------------------------- /frontend/src/view/auditLog/AuditLogFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auditLog/AuditLogFilter.tsx -------------------------------------------------------------------------------- /frontend/src/view/auditLog/AuditLogPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auditLog/AuditLogPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auditLog/AuditLogTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auditLog/AuditLogTable.tsx -------------------------------------------------------------------------------- /frontend/src/view/auditLog/AuditLogToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auditLog/AuditLogToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/EmailUnverifiedPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/EmailUnverifiedPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/EmptyPermissionsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/EmptyPermissionsPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/ForgotPasswordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/ForgotPasswordPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/InvitationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/InvitationPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/PasswordChangeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/PasswordChangeForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/PasswordResetPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/PasswordResetPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/ProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/ProfileForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/ProfileFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/ProfileFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/SigninPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/SigninPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/SignupPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/SignupPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/TenantNewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/TenantNewForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/TenantPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/TenantPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/TenantSelectForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/TenantSelectForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/VerifyEmailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/VerifyEmailPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/styles/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/styles/Content.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/styles/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/styles/Logo.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/styles/OtherActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/styles/OtherActions.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/styles/SocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/styles/SocialButtons.tsx -------------------------------------------------------------------------------- /frontend/src/view/auth/styles/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/auth/styles/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/form/AuthorForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/form/AuthorForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/form/AuthorFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/form/AuthorFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/list/AuthorListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/list/AuthorListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/list/AuthorListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/list/AuthorListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/view/AuthorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/view/AuthorView.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/view/AuthorViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/view/AuthorViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/author/view/AuthorViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/author/view/AuthorViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/form/BlogForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/form/BlogForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/form/BlogFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/form/BlogFormModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/form/BlogFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/form/BlogFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/list/BlogListFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/list/BlogListFilter.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/list/BlogListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/list/BlogListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/list/BlogListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/list/BlogListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/list/BlogListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/list/BlogListTable.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/list/BlogListToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/list/BlogListToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/view/BlogView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/view/BlogView.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/view/BlogViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/view/BlogViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/view/BlogViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/view/BlogViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/blog/view/BlogViewToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/blog/view/BlogViewToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/BrokerTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/BrokerTabs.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/form/BrokerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/form/BrokerForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/form/BrokerFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/form/BrokerFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/list/BrokerListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/list/BrokerListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/list/BrokerListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/list/BrokerListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/view/BrokerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/view/BrokerView.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/view/BrokerViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/view/BrokerViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/broker/view/BrokerViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/broker/view/BrokerViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/category/form/CategoryForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/category/form/CategoryForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/category/view/CategoryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/category/view/CategoryView.tsx -------------------------------------------------------------------------------- /frontend/src/view/dashboard/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/dashboard/DashboardPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/dashboard/RecentComments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/dashboard/RecentComments.tsx -------------------------------------------------------------------------------- /frontend/src/view/dashboard/RecentPosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/dashboard/RecentPosts.tsx -------------------------------------------------------------------------------- /frontend/src/view/dashboard/SitemapRefresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/dashboard/SitemapRefresh.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/Breadcrumb.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/BrokerArticlePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/BrokerArticlePage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/CategoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/CategoryPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/Contact.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/Footer.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/GeneralPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/GeneralPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/HomeViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/HomeViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/ImageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/ImageView.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/Layout.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/Meta.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/NormalPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/NormalPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/Redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/Redirect.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/blog/BlogDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/blog/BlogDetailPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/blog/BlogListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/blog/BlogListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/blog/CommentPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/blog/CommentPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/broker/BrokerPostPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/broker/BrokerPostPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/broker/BrokerViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/broker/BrokerViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/broker/ComparisonPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/broker/ComparisonPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/shared/CircleNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/shared/CircleNumber.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/shared/DashBorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/shared/DashBorder.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/Advisors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/Advisors.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/Category.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/ForexSchool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/ForexSchool.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/ForexStrategy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/ForexStrategy.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/MostRead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/MostRead.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/Promotion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/Promotion.tsx -------------------------------------------------------------------------------- /frontend/src/view/home/sidebar/TopBrokers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/home/sidebar/TopBrokers.tsx -------------------------------------------------------------------------------- /frontend/src/view/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/layout/Header.tsx -------------------------------------------------------------------------------- /frontend/src/view/layout/I18nFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/layout/I18nFlags.tsx -------------------------------------------------------------------------------- /frontend/src/view/layout/I18nSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/layout/I18nSelect.tsx -------------------------------------------------------------------------------- /frontend/src/view/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/layout/Layout.tsx -------------------------------------------------------------------------------- /frontend/src/view/layout/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/layout/Menu.tsx -------------------------------------------------------------------------------- /frontend/src/view/layout/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/layout/UserMenu.tsx -------------------------------------------------------------------------------- /frontend/src/view/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/menus.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/form/NewsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/form/NewsForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/form/NewsFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/form/NewsFormModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/form/NewsFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/form/NewsFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/list/NewsListFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/list/NewsListFilter.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/list/NewsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/list/NewsListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/list/NewsListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/list/NewsListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/list/NewsListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/list/NewsListTable.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/list/NewsListToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/list/NewsListToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/view/NewsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/view/NewsView.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/view/NewsViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/view/NewsViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/view/NewsViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/view/NewsViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/news/view/NewsViewToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/news/view/NewsViewToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/form/OpenxForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/form/OpenxForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/form/OpenxFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/form/OpenxFormModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/form/OpenxFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/form/OpenxFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/list/OpenxListFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/list/OpenxListFilter.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/list/OpenxListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/list/OpenxListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/list/OpenxListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/list/OpenxListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/list/OpenxListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/list/OpenxListTable.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/view/OpenxView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/view/OpenxView.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/view/OpenxViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/view/OpenxViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/openx/view/OpenxViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/openx/view/OpenxViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/form/PageForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/form/PageForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/form/PageFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/form/PageFormModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/form/PageFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/form/PageFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/list/PageListFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/list/PageListFilter.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/list/PageListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/list/PageListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/list/PageListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/list/PageListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/list/PageListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/list/PageListTable.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/list/PageListToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/list/PageListToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/view/PageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/view/PageView.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/view/PageViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/view/PageViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/view/PageViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/view/PageViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/page/view/PageViewToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/page/view/PageViewToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/plan/PlanCardFree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/plan/PlanCardFree.tsx -------------------------------------------------------------------------------- /frontend/src/view/plan/PlanCardPaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/plan/PlanCardPaid.tsx -------------------------------------------------------------------------------- /frontend/src/view/plan/PlanPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/plan/PlanPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/plan/styles/planCardStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/plan/styles/planCardStyles.tsx -------------------------------------------------------------------------------- /frontend/src/view/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/routes.tsx -------------------------------------------------------------------------------- /frontend/src/view/settings/SettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/settings/SettingsForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/settings/SettingsFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/settings/SettingsFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/Breadcrumb.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/ColoredChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/ColoredChip.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/CustomLoadable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/CustomLoadable.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/LoadingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/LoadingComponent.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/ProgressBar.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/Spinner.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/__mocks__/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/__mocks__/message.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/components/DidMount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/components/DidMount.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/components/OutOf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/components/OutOf.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/errors/Error403Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/errors/Error403Page.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/errors/Error404Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/errors/Error404Page.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/errors/Error500Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/errors/Error500Page.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/form/formErrors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/form/formErrors.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/importer/Importer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/importer/Importer.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/message.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/modals/ConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/modals/ConfirmModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/modals/ImageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/modals/ImageModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/moneyFormatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/moneyFormatter.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/routes/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/routes/PrivateRoute.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/routes/PublicRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/routes/PublicRoute.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/styles/FormWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/styles/FormWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/styles/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/styles/PageTitle.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/styles/StyledRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/styles/StyledRating.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/tab/TabPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/tab/TabPanel.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/table/FileListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/table/FileListView.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/table/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/table/Pagination.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/table/PriceListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/table/PriceListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/urlfy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/urlfy.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/AuthorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/AuthorView.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/CustomViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/CustomViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/FilesViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/FilesViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/HtmlView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/HtmlView.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/HtmlViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/HtmlViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/ImagesViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/ImagesViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/LogoViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/LogoViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/NoViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/NoViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/PageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/PageContent.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/PriceViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/PriceViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/RatingViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/RatingViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/shared/view/TextViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/shared/view/TextViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/tenant/form/TenantForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/tenant/form/TenantForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/tenant/form/TenantFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/tenant/form/TenantFormPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/tenant/list/TenantListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/tenant/list/TenantListPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/edit/UserEditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/edit/UserEditForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/edit/UserEditPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/edit/UserEditPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/list/UserFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/list/UserFilter.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/list/UserListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/list/UserListItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/list/UserPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/list/UserPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/list/UserTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/list/UserTable.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/list/UserToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/list/UserToolbar.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/new/UserNewForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/new/UserNewForm.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/new/UserNewFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/new/UserNewFormModal.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/new/UserNewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/new/UserNewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/view/UserStatusView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/view/UserStatusView.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/view/UserView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/view/UserView.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/view/UserViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/view/UserViewItem.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/view/UserViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/view/UserViewPage.tsx -------------------------------------------------------------------------------- /frontend/src/view/user/view/UserViewToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/src/view/user/view/UserViewToolbar.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/package.json -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkCreate.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkDestroy.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkFind.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkHome.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkImport.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkList.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/affiliateLinkUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/affiliateLinkUpdate.ts -------------------------------------------------------------------------------- /src/api/affiliateLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/affiliateLink/index.ts -------------------------------------------------------------------------------- /src/api/apiDocumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/apiDocumentation.ts -------------------------------------------------------------------------------- /src/api/apiRateLimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/apiRateLimiter.ts -------------------------------------------------------------------------------- /src/api/apiResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/apiResponseHandler.ts -------------------------------------------------------------------------------- /src/api/auditLog/auditLogList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auditLog/auditLogList.ts -------------------------------------------------------------------------------- /src/api/auditLog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auditLog/index.ts -------------------------------------------------------------------------------- /src/api/auth/authContact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authContact.ts -------------------------------------------------------------------------------- /src/api/auth/authMe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authMe.ts -------------------------------------------------------------------------------- /src/api/auth/authPasswordChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authPasswordChange.ts -------------------------------------------------------------------------------- /src/api/auth/authPasswordReset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authPasswordReset.ts -------------------------------------------------------------------------------- /src/api/auth/authSendPasswordResetEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authSendPasswordResetEmail.ts -------------------------------------------------------------------------------- /src/api/auth/authSignIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authSignIn.ts -------------------------------------------------------------------------------- /src/api/auth/authSignUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authSignUp.ts -------------------------------------------------------------------------------- /src/api/auth/authSocial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authSocial.ts -------------------------------------------------------------------------------- /src/api/auth/authUpdateProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authUpdateProfile.ts -------------------------------------------------------------------------------- /src/api/auth/authVerifyEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/authVerifyEmail.ts -------------------------------------------------------------------------------- /src/api/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/auth/index.ts -------------------------------------------------------------------------------- /src/api/author/authorAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorAutocomplete.ts -------------------------------------------------------------------------------- /src/api/author/authorCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorCreate.ts -------------------------------------------------------------------------------- /src/api/author/authorDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorDestroy.ts -------------------------------------------------------------------------------- /src/api/author/authorFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorFind.ts -------------------------------------------------------------------------------- /src/api/author/authorFirst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorFirst.ts -------------------------------------------------------------------------------- /src/api/author/authorImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorImport.ts -------------------------------------------------------------------------------- /src/api/author/authorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorList.ts -------------------------------------------------------------------------------- /src/api/author/authorUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/authorUpdate.ts -------------------------------------------------------------------------------- /src/api/author/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/author/index.ts -------------------------------------------------------------------------------- /src/api/blog/blogAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogAutocomplete.ts -------------------------------------------------------------------------------- /src/api/blog/blogContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogContent.ts -------------------------------------------------------------------------------- /src/api/blog/blogCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogCreate.ts -------------------------------------------------------------------------------- /src/api/blog/blogDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogDestroy.ts -------------------------------------------------------------------------------- /src/api/blog/blogFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogFind.ts -------------------------------------------------------------------------------- /src/api/blog/blogHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogHome.ts -------------------------------------------------------------------------------- /src/api/blog/blogImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogImport.ts -------------------------------------------------------------------------------- /src/api/blog/blogList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogList.ts -------------------------------------------------------------------------------- /src/api/blog/blogUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/blogUpdate.ts -------------------------------------------------------------------------------- /src/api/blog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blog/index.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentAutocomplete.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentCreate.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentDestroy.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentFind.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentHome.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentImport.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentList.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentReview.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentSpam.ts -------------------------------------------------------------------------------- /src/api/blogComment/blogCommentUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/blogCommentUpdate.ts -------------------------------------------------------------------------------- /src/api/blogComment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/blogComment/index.ts -------------------------------------------------------------------------------- /src/api/broker/brokerAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerAutocomplete.ts -------------------------------------------------------------------------------- /src/api/broker/brokerComparable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerComparable.ts -------------------------------------------------------------------------------- /src/api/broker/brokerCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerCreate.ts -------------------------------------------------------------------------------- /src/api/broker/brokerDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerDestroy.ts -------------------------------------------------------------------------------- /src/api/broker/brokerFeatured.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerFeatured.ts -------------------------------------------------------------------------------- /src/api/broker/brokerFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerFind.ts -------------------------------------------------------------------------------- /src/api/broker/brokerHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerHome.ts -------------------------------------------------------------------------------- /src/api/broker/brokerImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerImport.ts -------------------------------------------------------------------------------- /src/api/broker/brokerList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerList.ts -------------------------------------------------------------------------------- /src/api/broker/brokerTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerTop.ts -------------------------------------------------------------------------------- /src/api/broker/brokerUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerUpdate.ts -------------------------------------------------------------------------------- /src/api/broker/brokerView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/brokerView.ts -------------------------------------------------------------------------------- /src/api/broker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/broker/index.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleCreate.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleDestroy.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleFind.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleHome.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleImport.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleList.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/brokerArticleUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/brokerArticleUpdate.ts -------------------------------------------------------------------------------- /src/api/brokerArticle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerArticle/index.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostAutocomplete.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostCreate.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostDestroy.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostFind.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostHome.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostImport.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostList.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostReview.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostSpam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostSpam.ts -------------------------------------------------------------------------------- /src/api/brokerPost/brokerPostUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/brokerPostUpdate.ts -------------------------------------------------------------------------------- /src/api/brokerPost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/brokerPost/index.ts -------------------------------------------------------------------------------- /src/api/category/categoryAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryAutocomplete.ts -------------------------------------------------------------------------------- /src/api/category/categoryCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryCreate.ts -------------------------------------------------------------------------------- /src/api/category/categoryDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryDestroy.ts -------------------------------------------------------------------------------- /src/api/category/categoryFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryFind.ts -------------------------------------------------------------------------------- /src/api/category/categoryFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryFooter.ts -------------------------------------------------------------------------------- /src/api/category/categoryHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryHome.ts -------------------------------------------------------------------------------- /src/api/category/categoryImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryImport.ts -------------------------------------------------------------------------------- /src/api/category/categoryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryList.ts -------------------------------------------------------------------------------- /src/api/category/categorySidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categorySidebar.ts -------------------------------------------------------------------------------- /src/api/category/categoryUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/categoryUpdate.ts -------------------------------------------------------------------------------- /src/api/category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/category/index.ts -------------------------------------------------------------------------------- /src/api/expertAdvisorTest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/expertAdvisorTest/index.ts -------------------------------------------------------------------------------- /src/api/file/ckeditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/file/ckeditor.ts -------------------------------------------------------------------------------- /src/api/file/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/file/credentials.ts -------------------------------------------------------------------------------- /src/api/file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/file/index.ts -------------------------------------------------------------------------------- /src/api/file/localhost/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/file/localhost/download.ts -------------------------------------------------------------------------------- /src/api/file/localhost/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/file/localhost/upload.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/mui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/mui/index.ts -------------------------------------------------------------------------------- /src/api/mui/muiFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/mui/muiFind.ts -------------------------------------------------------------------------------- /src/api/mui/muiSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/mui/muiSave.ts -------------------------------------------------------------------------------- /src/api/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/index.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationAutocomplete.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationCreate.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationDestroy.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationFind.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationForexSchool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationForexSchool.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationForexStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationForexStrategy.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationHome.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationImport.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationList.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationMostRead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationMostRead.ts -------------------------------------------------------------------------------- /src/api/navigation/navigationUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/navigation/navigationUpdate.ts -------------------------------------------------------------------------------- /src/api/news/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/index.ts -------------------------------------------------------------------------------- /src/api/news/newsAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsAutocomplete.ts -------------------------------------------------------------------------------- /src/api/news/newsCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsCreate.ts -------------------------------------------------------------------------------- /src/api/news/newsDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsDestroy.ts -------------------------------------------------------------------------------- /src/api/news/newsFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsFind.ts -------------------------------------------------------------------------------- /src/api/news/newsImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsImport.ts -------------------------------------------------------------------------------- /src/api/news/newsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsList.ts -------------------------------------------------------------------------------- /src/api/news/newsUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/news/newsUpdate.ts -------------------------------------------------------------------------------- /src/api/openx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/index.ts -------------------------------------------------------------------------------- /src/api/openx/openxAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxAutocomplete.ts -------------------------------------------------------------------------------- /src/api/openx/openxCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxCreate.ts -------------------------------------------------------------------------------- /src/api/openx/openxDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxDestroy.ts -------------------------------------------------------------------------------- /src/api/openx/openxFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxFind.ts -------------------------------------------------------------------------------- /src/api/openx/openxImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxImport.ts -------------------------------------------------------------------------------- /src/api/openx/openxList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxList.ts -------------------------------------------------------------------------------- /src/api/openx/openxUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/openx/openxUpdate.ts -------------------------------------------------------------------------------- /src/api/page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/index.ts -------------------------------------------------------------------------------- /src/api/page/pageAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageAutocomplete.ts -------------------------------------------------------------------------------- /src/api/page/pageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageCreate.ts -------------------------------------------------------------------------------- /src/api/page/pageDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageDestroy.ts -------------------------------------------------------------------------------- /src/api/page/pageFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageFind.ts -------------------------------------------------------------------------------- /src/api/page/pageHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageHome.ts -------------------------------------------------------------------------------- /src/api/page/pageImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageImport.ts -------------------------------------------------------------------------------- /src/api/page/pageList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageList.ts -------------------------------------------------------------------------------- /src/api/page/pageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/page/pageUpdate.ts -------------------------------------------------------------------------------- /src/api/pageWarning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/index.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningAutocomplete.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningCreate.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningDestroy.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningFind.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningImport.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningList.ts -------------------------------------------------------------------------------- /src/api/pageWarning/pageWarningUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/pageWarning/pageWarningUpdate.ts -------------------------------------------------------------------------------- /src/api/plan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/plan/index.ts -------------------------------------------------------------------------------- /src/api/plan/stripe/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/plan/stripe/checkout.ts -------------------------------------------------------------------------------- /src/api/plan/stripe/portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/plan/stripe/portal.ts -------------------------------------------------------------------------------- /src/api/plan/stripe/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/plan/stripe/webhook.ts -------------------------------------------------------------------------------- /src/api/promotion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/index.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionAutocomplete.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionCreate.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionDestroy.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionFind.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionHome.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionImport.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionList.ts -------------------------------------------------------------------------------- /src/api/promotion/promotionUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/promotion/promotionUpdate.ts -------------------------------------------------------------------------------- /src/api/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/settings/index.ts -------------------------------------------------------------------------------- /src/api/settings/settingsFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/settings/settingsFind.ts -------------------------------------------------------------------------------- /src/api/settings/settingsSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/settings/settingsSave.ts -------------------------------------------------------------------------------- /src/api/sitemap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/sitemap/index.ts -------------------------------------------------------------------------------- /src/api/sitemap/sitemapRefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/sitemap/sitemapRefresh.ts -------------------------------------------------------------------------------- /src/api/tenant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/index.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantCreate.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantDestroy.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantFind.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantInvitationAccept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantInvitationAccept.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantInvitationDecline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantInvitationDecline.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantList.ts -------------------------------------------------------------------------------- /src/api/tenant/tenantUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/tenant/tenantUpdate.ts -------------------------------------------------------------------------------- /src/api/trackingParameter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/trackingParameter/index.ts -------------------------------------------------------------------------------- /src/api/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/index.ts -------------------------------------------------------------------------------- /src/api/user/userAutocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userAutocomplete.ts -------------------------------------------------------------------------------- /src/api/user/userCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userCreate.ts -------------------------------------------------------------------------------- /src/api/user/userDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userDestroy.ts -------------------------------------------------------------------------------- /src/api/user/userEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userEdit.ts -------------------------------------------------------------------------------- /src/api/user/userFind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userFind.ts -------------------------------------------------------------------------------- /src/api/user/userImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userImport.ts -------------------------------------------------------------------------------- /src/api/user/userList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/api/user/userList.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/database/databaseConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/databaseConnection.ts -------------------------------------------------------------------------------- /src/database/migrations/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/migrations/create.ts -------------------------------------------------------------------------------- /src/database/models/affiliate_link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/affiliate_link.ts -------------------------------------------------------------------------------- /src/database/models/affiliate_link_heartbeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/affiliate_link_heartbeat.ts -------------------------------------------------------------------------------- /src/database/models/auditLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/auditLog.ts -------------------------------------------------------------------------------- /src/database/models/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/author.ts -------------------------------------------------------------------------------- /src/database/models/blog_comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/blog_comment.ts -------------------------------------------------------------------------------- /src/database/models/blog_entries_broker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/blog_entries_broker.ts -------------------------------------------------------------------------------- /src/database/models/blog_entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/blog_entry.ts -------------------------------------------------------------------------------- /src/database/models/blog_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/blog_image.ts -------------------------------------------------------------------------------- /src/database/models/broker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker.ts -------------------------------------------------------------------------------- /src/database/models/broker_address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_address.ts -------------------------------------------------------------------------------- /src/database/models/broker_article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_article.ts -------------------------------------------------------------------------------- /src/database/models/broker_bank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_bank.ts -------------------------------------------------------------------------------- /src/database/models/broker_certificate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_certificate.ts -------------------------------------------------------------------------------- /src/database/models/broker_certificate_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_certificate_image.ts -------------------------------------------------------------------------------- /src/database/models/broker_checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_checkbox.ts -------------------------------------------------------------------------------- /src/database/models/broker_creterias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_creterias.ts -------------------------------------------------------------------------------- /src/database/models/broker_currency_pair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_currency_pair.ts -------------------------------------------------------------------------------- /src/database/models/broker_deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_deposit.ts -------------------------------------------------------------------------------- /src/database/models/broker_deposit_guarantee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_deposit_guarantee.ts -------------------------------------------------------------------------------- /src/database/models/broker_dynamic_field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_dynamic_field.ts -------------------------------------------------------------------------------- /src/database/models/broker_email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_email.ts -------------------------------------------------------------------------------- /src/database/models/broker_fax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_fax.ts -------------------------------------------------------------------------------- /src/database/models/broker_feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_feature.ts -------------------------------------------------------------------------------- /src/database/models/broker_forex_signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_forex_signal.ts -------------------------------------------------------------------------------- /src/database/models/broker_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_image.ts -------------------------------------------------------------------------------- /src/database/models/broker_metas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_metas.ts -------------------------------------------------------------------------------- /src/database/models/broker_order_execution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_order_execution.ts -------------------------------------------------------------------------------- /src/database/models/broker_order_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_order_type.ts -------------------------------------------------------------------------------- /src/database/models/broker_phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_phone.ts -------------------------------------------------------------------------------- /src/database/models/broker_post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_post.ts -------------------------------------------------------------------------------- /src/database/models/broker_rating.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_rating.ts -------------------------------------------------------------------------------- /src/database/models/broker_spread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_spread.ts -------------------------------------------------------------------------------- /src/database/models/broker_trade_platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_trade_platform.ts -------------------------------------------------------------------------------- /src/database/models/broker_trade_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_trade_store.ts -------------------------------------------------------------------------------- /src/database/models/broker_upside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_upside.ts -------------------------------------------------------------------------------- /src/database/models/broker_video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/broker_video.ts -------------------------------------------------------------------------------- /src/database/models/brokers_category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/brokers_category.ts -------------------------------------------------------------------------------- /src/database/models/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/category.ts -------------------------------------------------------------------------------- /src/database/models/category_description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/category_description.ts -------------------------------------------------------------------------------- /src/database/models/expert_advisor_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/expert_advisor_test.ts -------------------------------------------------------------------------------- /src/database/models/expert_advisor_test_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/expert_advisor_test_image.ts -------------------------------------------------------------------------------- /src/database/models/expert_advisor_test_metas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/expert_advisor_test_metas.ts -------------------------------------------------------------------------------- /src/database/models/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/file.ts -------------------------------------------------------------------------------- /src/database/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/index.ts -------------------------------------------------------------------------------- /src/database/models/mui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/mui.ts -------------------------------------------------------------------------------- /src/database/models/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/navigation.ts -------------------------------------------------------------------------------- /src/database/models/news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/news.ts -------------------------------------------------------------------------------- /src/database/models/news_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/news_image.ts -------------------------------------------------------------------------------- /src/database/models/openx_banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/openx_banner.ts -------------------------------------------------------------------------------- /src/database/models/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/page.ts -------------------------------------------------------------------------------- /src/database/models/page_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/page_image.ts -------------------------------------------------------------------------------- /src/database/models/page_related_link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/page_related_link.ts -------------------------------------------------------------------------------- /src/database/models/page_warning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/page_warning.ts -------------------------------------------------------------------------------- /src/database/models/promotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/promotion.ts -------------------------------------------------------------------------------- /src/database/models/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/settings.ts -------------------------------------------------------------------------------- /src/database/models/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/tenant.ts -------------------------------------------------------------------------------- /src/database/models/tenantUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/tenantUser.ts -------------------------------------------------------------------------------- /src/database/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/models/user.ts -------------------------------------------------------------------------------- /src/database/repositories/IRepositoryOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/IRepositoryOptions.ts -------------------------------------------------------------------------------- /src/database/repositories/auditLogRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/auditLogRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/authorRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/authorRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/blogRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/blogRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/brokerFaxRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/brokerFaxRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/brokerRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/brokerRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/categoryRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/categoryRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/fileRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/fileRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/muiRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/muiRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/newsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/newsRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/openxRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/openxRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/pageRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/pageRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/promotionRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/promotionRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/sequelizeRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/sequelizeRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/settingsRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/settingsRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/tenantRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/tenantRepository.ts -------------------------------------------------------------------------------- /src/database/repositories/userRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/repositories/userRepository.ts -------------------------------------------------------------------------------- /src/database/utils/orderByUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/utils/orderByUtils.ts -------------------------------------------------------------------------------- /src/database/utils/sequelizeArrayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/utils/sequelizeArrayUtils.ts -------------------------------------------------------------------------------- /src/database/utils/sequelizeFilterUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/utils/sequelizeFilterUtils.ts -------------------------------------------------------------------------------- /src/database/utils/sequelizeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/utils/sequelizeUtils.ts -------------------------------------------------------------------------------- /src/database/utils/userTenantUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/database/utils/userTenantUtils.ts -------------------------------------------------------------------------------- /src/documentation/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/documentation/openapi.json -------------------------------------------------------------------------------- /src/errors/Error400.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/errors/Error400.ts -------------------------------------------------------------------------------- /src/errors/Error401.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/errors/Error401.ts -------------------------------------------------------------------------------- /src/errors/Error403.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/errors/Error403.ts -------------------------------------------------------------------------------- /src/errors/Error404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/errors/Error404.ts -------------------------------------------------------------------------------- /src/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/i18n/de.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/middlewares/authMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/middlewares/authMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/databaseMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/middlewares/databaseMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/languageMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/middlewares/languageMiddleware.ts -------------------------------------------------------------------------------- /src/middlewares/tenantMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/middlewares/tenantMiddleware.ts -------------------------------------------------------------------------------- /src/security/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/security/permissions.ts -------------------------------------------------------------------------------- /src/security/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/security/plans.ts -------------------------------------------------------------------------------- /src/security/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/security/roles.ts -------------------------------------------------------------------------------- /src/security/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/security/storage.ts -------------------------------------------------------------------------------- /src/seo/home/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/seo/home/BrokerArticlePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/BrokerArticlePage.tsx -------------------------------------------------------------------------------- /src/seo/home/CategoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/CategoryPage.tsx -------------------------------------------------------------------------------- /src/seo/home/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/Contact.tsx -------------------------------------------------------------------------------- /src/seo/home/DefaultCategoryDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/DefaultCategoryDescription.tsx -------------------------------------------------------------------------------- /src/seo/home/GeneralPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/GeneralPage.tsx -------------------------------------------------------------------------------- /src/seo/home/HomeViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/HomeViewPage.tsx -------------------------------------------------------------------------------- /src/seo/home/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/Layout.tsx -------------------------------------------------------------------------------- /src/seo/home/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/Meta.tsx -------------------------------------------------------------------------------- /src/seo/home/NormalPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/NormalPage.tsx -------------------------------------------------------------------------------- /src/seo/home/blog/BlogDetailPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/blog/BlogDetailPage.tsx -------------------------------------------------------------------------------- /src/seo/home/blog/BlogListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/blog/BlogListPage.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/BrokerComparisonPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/BrokerComparisonPage.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/BrokerListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/BrokerListTable.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/BrokerTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/BrokerTabs.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/BrokerViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/BrokerViewPage.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/ComparisonPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/ComparisonPage.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/components/BrokerHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/components/BrokerHeader.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/components/BrokerSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/components/BrokerSection.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/AttachLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/AttachLink.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/AttrTypography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/AttrTypography.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerAddress.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerAttrs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerAttrs.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerCheckbox.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerContact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerContact.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerImages.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerLinks.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/BrokerUpsides.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/BrokerUpsides.tsx -------------------------------------------------------------------------------- /src/seo/home/broker/shared/OverallRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/broker/shared/OverallRating.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/AuthorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/AuthorView.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/CheckboxViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/CheckboxViewItem.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/CircleNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/CircleNumber.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/HtmlView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/HtmlView.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/ImageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/ImageView.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/OutOf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/OutOf.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/RatingViewItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/RatingViewItem.tsx -------------------------------------------------------------------------------- /src/seo/home/shared/StyledRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/home/shared/StyledRating.tsx -------------------------------------------------------------------------------- /src/seo/i18n/de.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/i18n/de.tsx -------------------------------------------------------------------------------- /src/seo/i18n/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/i18n/index.tsx -------------------------------------------------------------------------------- /src/seo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/index.tsx -------------------------------------------------------------------------------- /src/seo/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/seo/utils.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/services/IServiceOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/IServiceOptions.ts -------------------------------------------------------------------------------- /src/services/affiliateLinkService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/affiliateLinkService.ts -------------------------------------------------------------------------------- /src/services/auth/authProfileEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/auth/authProfileEditor.ts -------------------------------------------------------------------------------- /src/services/auth/authService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/auth/authService.ts -------------------------------------------------------------------------------- /src/services/authorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/authorService.ts -------------------------------------------------------------------------------- /src/services/blogCommentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/blogCommentService.ts -------------------------------------------------------------------------------- /src/services/blogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/blogService.ts -------------------------------------------------------------------------------- /src/services/brokerArticleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/brokerArticleService.ts -------------------------------------------------------------------------------- /src/services/brokerPostService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/brokerPostService.ts -------------------------------------------------------------------------------- /src/services/brokerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/brokerService.ts -------------------------------------------------------------------------------- /src/services/categoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/categoryService.ts -------------------------------------------------------------------------------- /src/services/emailSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/emailSender.ts -------------------------------------------------------------------------------- /src/services/expertAdvisorTestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/expertAdvisorTestService.ts -------------------------------------------------------------------------------- /src/services/file/awsFileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/file/awsFileStorage.ts -------------------------------------------------------------------------------- /src/services/file/fileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/file/fileStorage.ts -------------------------------------------------------------------------------- /src/services/file/googleCloudFileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/file/googleCloudFileStorage.ts -------------------------------------------------------------------------------- /src/services/file/localhostFileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/file/localhostFileStorage.ts -------------------------------------------------------------------------------- /src/services/migrationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/migrationService.ts -------------------------------------------------------------------------------- /src/services/muiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/muiService.ts -------------------------------------------------------------------------------- /src/services/navigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/navigationService.ts -------------------------------------------------------------------------------- /src/services/newsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/newsService.ts -------------------------------------------------------------------------------- /src/services/openxService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/openxService.ts -------------------------------------------------------------------------------- /src/services/pageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/pageService.ts -------------------------------------------------------------------------------- /src/services/pageWarningService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/pageWarningService.ts -------------------------------------------------------------------------------- /src/services/promotionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/promotionService.ts -------------------------------------------------------------------------------- /src/services/recaptcha/ReCaptchaV2Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/recaptcha/ReCaptchaV2Service.ts -------------------------------------------------------------------------------- /src/services/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/settingsService.ts -------------------------------------------------------------------------------- /src/services/sitemap/sitemapService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/sitemap/sitemapService.ts -------------------------------------------------------------------------------- /src/services/tenantService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/tenantService.ts -------------------------------------------------------------------------------- /src/services/tenantSubdomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/tenantSubdomain.ts -------------------------------------------------------------------------------- /src/services/trackingParameterService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/trackingParameterService.ts -------------------------------------------------------------------------------- /src/services/user/permissionChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/user/permissionChecker.ts -------------------------------------------------------------------------------- /src/services/user/userCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/user/userCreator.ts -------------------------------------------------------------------------------- /src/services/user/userDestroyer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/user/userDestroyer.ts -------------------------------------------------------------------------------- /src/services/user/userEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/user/userEditor.ts -------------------------------------------------------------------------------- /src/services/user/userImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/services/user/userImporter.ts -------------------------------------------------------------------------------- /src/utils/dateTimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/utils/dateTimeUtils.ts -------------------------------------------------------------------------------- /src/utils/pathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/utils/pathUtils.ts -------------------------------------------------------------------------------- /src/utils/userUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/src/utils/userUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miroshar-success/broker-bewertungen/HEAD/yarn.lock --------------------------------------------------------------------------------