├── .gitignore ├── .scalafmt.conf ├── LICENSE ├── README.md ├── a11y ├── testUtils │ └── A11ySpec.scala └── views │ └── testSpec.scala ├── app ├── .DS_Store ├── assets │ ├── images │ │ ├── appstore-link.png │ │ └── googleplay-link.png │ ├── javascripts │ │ ├── card.js │ │ ├── pertaxBacklink.js │ │ └── webChat.js │ └── stylesheets │ │ ├── _bta-partial.scss │ │ ├── _card.scss │ │ ├── _flexbox.scss │ │ ├── modules │ │ └── _colors.scss │ │ ├── partials │ │ └── _home.scss │ │ └── pertaxMain.scss ├── config │ ├── ApplicationStartUp.scala │ ├── ConfigDecorator.scala │ ├── CryptoProvider.scala │ ├── HmrcModule.scala │ ├── NewsAndTilesConfig.scala │ └── SensitiveT.scala ├── connectors │ ├── AddressLookupConnector.scala │ ├── AgentClientAuthorisationConnector.scala │ ├── BreathingSpaceConnector.scala │ ├── CitizenDetailsConnector.scala │ ├── EnhancedPartialRetriever.scala │ ├── EnrolmentsConnector.scala │ ├── HttpClientResponse.scala │ ├── IdentityVerificationFrontendConnector.scala │ ├── PayApiConnector.scala │ ├── PertaxConnector.scala │ ├── PreferencesFrontendConnector.scala │ ├── SeissConnector.scala │ ├── SelfAssessmentConnector.scala │ ├── TaiConnector.scala │ └── UserGroupSearchConnector.scala ├── controllers │ ├── ApplicationController.scala │ ├── AssetsController.scala │ ├── HomeController.scala │ ├── LanguageSwitchController.scala │ ├── MessageController.scala │ ├── NiLetterController.scala │ ├── PaperlessPreferencesController.scala │ ├── PaymentsController.scala │ ├── PertaxBaseController.scala │ ├── PublicController.scala │ ├── RlsController.scala │ ├── SaBppInterstitialPageController.scala │ ├── SaWrongCredentialsController.scala │ ├── SelfAssessmentController.scala │ ├── SessionManagementController.scala │ ├── UpdateDetailsErrorController.scala │ ├── address │ │ ├── AddressController.scala │ │ ├── AddressErrorController.scala │ │ ├── AddressSelectorController.scala │ │ ├── AddressSubmissionController.scala │ │ ├── ClosePostalAddressController.scala │ │ ├── DoYouLiveInTheUKController.scala │ │ ├── PersonalDetailsController.scala │ │ ├── PostalDoYouLiveInTheUKController.scala │ │ ├── PostcodeLookupController.scala │ │ ├── StartChangeOfAddressController.scala │ │ ├── StartDateController.scala │ │ ├── UpdateAddressController.scala │ │ └── UpdateInternationalAddressController.scala │ ├── auth │ │ ├── AuditTags.scala │ │ ├── AuthJourney.scala │ │ ├── AuthRetrievals.scala │ │ ├── InternalAuthAction.scala │ │ ├── PertaxAuthAction.scala │ │ ├── SelfAssessmentStatusAction.scala │ │ ├── WithBreadcrumbAction.scala │ │ └── requests │ │ │ ├── AuthenticatedRequest.scala │ │ │ └── UserRequest.scala │ ├── bindable │ │ ├── AddrType.scala │ │ ├── Origin.scala │ │ └── package.scala │ ├── controllershelpers │ │ ├── AddressJourneyAuditingHelper.scala │ │ ├── AddressJourneyCachingHelper.scala │ │ ├── AddressSubmissionControllerHelper.scala │ │ ├── CountryHelper.scala │ │ ├── HomeCardGenerator.scala │ │ ├── PaperlessInterruptHelper.scala │ │ ├── RlsInterruptHelper.scala │ │ └── WelshWarningHelper.scala │ ├── interstitials │ │ ├── InterstitialController.scala │ │ └── MtdAdvertInterstitialController.scala │ └── testOnly │ │ └── FeatureFlagsController.scala ├── error │ ├── ErrorRenderer.scala │ └── LocalErrorHandler.scala ├── models │ ├── Address.scala │ ├── AddressJourneyData.scala │ ├── AddressJourneyTTLModels.scala │ ├── AddressMoved.scala │ ├── AddressesLock.scala │ ├── AgentClientStatus.scala │ ├── BreathingSpaceIndicator.scala │ ├── BreathingSpaceIndicatorResponse.scala │ ├── Country.scala │ ├── DateTuple.scala │ ├── ETag.scala │ ├── EnrolmentStatus.scala │ ├── ErrorView.scala │ ├── ItsaEnrolment.scala │ ├── LocalTaxYearResolver.scala │ ├── MessageCount.scala │ ├── MtdUserType.scala │ ├── NewsAndContentModel.scala │ ├── PaperlessStatusMessages.scala │ ├── PayApiModels.scala │ ├── PaymentRequest.scala │ ├── Person.scala │ ├── PersonDetails.scala │ ├── PertaxResponse.scala │ ├── ReconciliationStatus.scala │ ├── SaEnrolmentRequest.scala │ ├── SeissModel.scala │ ├── SeissRequest.scala │ ├── SelectSABPPPaymentModel.scala │ ├── SelfAssessmentEnrolment.scala │ ├── SelfAssessmentUserType.scala │ ├── SummaryCardPartial.scala │ ├── TaxComponents.scala │ ├── UnusedAllowance.scala │ ├── UserAnswers.scala │ ├── UserDetails.scala │ ├── UserName.scala │ ├── addresslookup │ │ ├── Address.scala │ │ ├── AddressLookup.scala │ │ ├── AddressRecord.scala │ │ ├── Country.scala │ │ └── RecordSet.scala │ ├── admin │ │ └── FeatureFlags.scala │ ├── dto │ │ ├── AddressDto.scala │ │ ├── AddressFinderDto.scala │ │ ├── AddressPageVisitedDto.scala │ │ ├── AddressSelectorDto.scala │ │ ├── ClosePostalAddressChoiceDto.scala │ │ ├── DateDto.scala │ │ ├── Dto.scala │ │ ├── InternationalAddressChoiceDto.scala │ │ ├── ResidencyChoiceDto.scala │ │ └── SAWrongCredentialsDto.scala │ ├── enrolments │ │ ├── AccountDetails.scala │ │ ├── EACDEnrolment.scala │ │ ├── EnrolmentEnum.scala │ │ ├── IdentifiersOrVerifiers.scala │ │ ├── IdentityProviderType.scala │ │ ├── KnownFactsRequest.scala │ │ ├── KnownFactsResponse.scala │ │ ├── UsersAssignedEnrolment.scala │ │ └── UsersGroupResponse.scala │ └── models.scala ├── queries │ └── Query.scala ├── repositories │ ├── EditAddressLockRepository.scala │ ├── EncryptedSessionCacheRepository.scala │ └── JourneyCacheRepository.scala ├── routePages │ ├── AddressFinderPage.scala │ ├── HasAddressAlreadyVisitedPage.scala │ ├── QuestionPage.scala │ ├── SelectedAddressRecordPage.scala │ ├── SelectedRecordSetPage.scala │ ├── SelfAssessmentUserTypePage.scala │ ├── SubmittedAddressPage.scala │ ├── SubmittedInternationalAddressChoicePage.scala │ ├── SubmittedResidencyChoicePage.scala │ └── SubmittedStartDatePage.scala ├── services │ ├── AddressMovedService.scala │ ├── AddressSelectorService.scala │ ├── AgentClientAuthorisationService.scala │ ├── BreathingSpaceService.scala │ ├── CacheService.scala │ ├── CitizenDetailsService.scala │ ├── EnrolmentStoreProxyService.scala │ ├── IdentityVerificationFrontendService.scala │ ├── SeissService.scala │ ├── SelfAssessmentService.scala │ ├── TaiService.scala │ ├── URLService.scala │ └── partials │ │ ├── FormPartialService.scala │ │ ├── MessageFrontendService.scala │ │ ├── SaPartialService.scala │ │ └── TaxCalcPartialService.scala ├── util │ ├── AlertBannerHelper.scala │ ├── AuditServiceTools.scala │ ├── DateTimeTools.scala │ ├── EnrolmentsHelper.scala │ ├── Enumerable.scala │ ├── EtagError.scala │ ├── Formatters.scala │ ├── FutureEarlyTimeout.scala │ ├── LocalDateUtilities.scala │ ├── PertaxSessionKeys.scala │ ├── PertaxValidators.scala │ ├── RateLimiter.scala │ ├── TaxYearRetriever.scala │ ├── TemplateFunctions.scala │ ├── Tools.scala │ └── WithName.scala ├── viewmodels │ ├── AddressRowModel.scala │ ├── AlertBannerViewModel.scala │ ├── HomeViewModel.scala │ ├── PersonalDetailsTableRowModel.scala │ └── PersonalDetailsViewModel.scala └── views │ ├── ErrorView.scala.html │ ├── HomeView.scala.html │ ├── InternalServerErrorView.scala.html │ ├── MainView.scala │ ├── ManualCorrespondenceView.scala.html │ ├── SelfAssessmentSummaryView.scala.html │ ├── ShutteringView.scala.html │ ├── UnauthenticatedErrorView.scala.html │ ├── UnauthenticatedMainView.scala │ ├── cards │ └── home │ │ ├── ChildBenefitSingleAccountView.scala.html │ │ ├── ItsaMergeView.scala.html │ │ ├── LatestNewsAndUpdatesView.scala.html │ │ ├── MTDITAdvertTileView.scala.html │ │ ├── MarriageAllowanceView.scala.html │ │ ├── NISPView.scala.html │ │ ├── PayAsYouEarnView.scala.html │ │ ├── SaMergeView.scala.html │ │ ├── SeissView.scala.html │ │ ├── SelfAssessmentRegistrationView.scala.html │ │ ├── TaxSummariesView.scala.html │ │ └── TrustedHelpersView.scala.html │ ├── components │ ├── AdditionalJavascript.scala.html │ ├── Button.scala.html │ ├── ErrorSummary.scala.html │ ├── FullWidthMainContent.scala.html │ ├── H1.scala.html │ ├── H2.scala.html │ ├── H3.scala.html │ ├── HeadBlock.scala.html │ ├── InputDate.scala.html │ ├── InputRadios.scala.html │ ├── InputValue.scala.html │ ├── InputYesNo.scala.html │ ├── Link.scala.html │ ├── P.scala.html │ ├── P85Content.scala.html │ └── alertBanner │ │ ├── AlertBanner.scala.html │ │ ├── paperlessStatus │ │ ├── bouncedEmail.scala.html │ │ ├── unverifiedEmail.scala.html │ │ └── voluntaryContributionsAlertView.scala.html │ │ └── peakDemandBanner.scala.html │ ├── interstitial │ ├── CheckYourStatePensionCallBackView.scala.html │ ├── DisplayAddressInterstitialView.scala.html │ ├── MTDITAdvertPageView.scala.html │ ├── SPPInterstitialView.scala.html │ ├── SelfAssessmentRegistrationPageView.scala.html │ ├── TaxCreditsEndedInformationInterstitialView.scala.html │ ├── ViewBreathingSpaceView.scala.html │ ├── ViewChildBenefitsSummarySingleAccountInterstitialView.scala.html │ ├── ViewHICBCChargeInPAYEView.scala.html │ ├── ViewItsaMergePageView.scala.html │ ├── ViewNISPView.scala.html │ ├── ViewNationalInsuranceInterstitialHomeView.scala.html │ └── ViewNewsAndUpdatesView.scala.html │ ├── iv │ ├── failure │ │ ├── CannotConfirmIdentityView.scala.html │ │ ├── FailedIvContinueToActivateSaView.scala.html │ │ ├── FailedIvIncompleteView.scala.html │ │ ├── FailedIvSaFilerWithNoEnrolmentView.scala.html │ │ ├── LockedOutView.scala.html │ │ ├── TechnicalIssuesView.scala.html │ │ ├── TimeOutView.scala.html │ │ └── TwoFaFailIvSuccessView.scala.html │ ├── start │ │ └── ivStartPage.scala.html │ └── success │ │ └── SuccessView.scala.html │ ├── message │ ├── MessageDetailView.scala.html │ └── MessageInboxView.scala.html │ ├── personaldetails │ ├── AddressAlreadyUpdatedView.scala.html │ ├── AddressSelectorView.scala.html │ ├── CannotUpdateAddressEarlyDateView.scala.html │ ├── CannotUpdateAddressFutureDateView.scala.html │ ├── CannotUseServiceView.scala.html │ ├── CheckYourAddressInterruptView.scala.html │ ├── CloseCorrespondenceAddressChoiceView.scala.html │ ├── ConfirmCloseCorrespondenceAddressView.scala.html │ ├── EnterStartDateView.scala.html │ ├── InternationalAddressChoiceView.scala.html │ ├── PersonalDetailsView.scala.html │ ├── PostcodeLookupView.scala.html │ ├── ReviewChangesView.scala.html │ ├── StartChangeOfAddressView.scala.html │ ├── TryAgainToUpdateDetailsView.scala.html │ ├── UpdateAddressConfirmationView.scala.html │ ├── UpdateAddressView.scala.html │ ├── UpdateInternationalAddressView.scala.html │ └── partials │ │ ├── AddressUnavailableView.scala.html │ │ ├── AddressView.scala.html │ │ └── CorrespondenceAddressView.scala.html │ ├── preferences │ └── managePrefs.scala.html │ ├── print │ └── NiLetterView.scala.html │ ├── public │ └── SessionTimeoutView.scala.html │ ├── selfassessment │ ├── DoYouKnowOtherCredentialsView.scala.html │ ├── DoYouKnowUserIdView.scala.html │ ├── FindYourUserIdView.scala.html │ ├── NeedToResetPasswordView.scala.html │ ├── RequestAccessToSelfAssessmentView.scala.html │ ├── Sa302InterruptView.scala.html │ ├── SignInAgainView.scala.html │ ├── SignedInWrongAccountView.scala.html │ ├── selfAssessmentForm.scala.html │ ├── selfAssessmentHeading.scala.html │ └── selfAssessmentUtr.scala.html │ └── tags │ ├── card.scala.html │ ├── cardHelper.scala.html │ ├── cardNewsAndUpdates.scala.html │ ├── formattedNino.scala.html │ ├── fullAddress.scala.html │ └── gaTrackAnchorEventTranslateLabel.scala.html ├── conf ├── admin.routes ├── application.conf ├── logback.xml ├── messages ├── messages.cy ├── no-logger.xml ├── prod.routes └── testOnlyDoNotUseInAppConf.routes ├── it └── test │ ├── MainViewSpec.scala │ ├── address │ ├── PersonalDetailsControllerSpec.scala │ └── RLSInterruptPageSpec.scala │ ├── controllers │ ├── ContentsCheckSpec.scala │ ├── HomeControllerAlertBannerISpec.scala │ ├── HomeControllerBreathingSpaceISpec.scala │ ├── HomeControllerChildBenefitsISpec.scala │ ├── HomeControllerErrorISpec.scala │ ├── HomeControllerFeedbackISpec.scala │ ├── HomeControllerMarriageAllowanceISpec.scala │ ├── HomeControllerMciISpec.scala │ ├── HomeControllerNISPISpec.scala │ ├── HomeControllerPayeISpec.scala │ ├── HomeControllerScaISpec.scala │ ├── HomeControllerSelfAssessmentISpec.scala │ ├── HomeControllerTrustedHelperISpec.scala │ ├── HomeControllerWebChatISpec.scala │ ├── PersonalDetailsControllerItSpec.scala │ ├── PostcodeLookupControllerISpec.scala │ ├── TimeoutsISpec.scala │ └── auth │ │ └── AuthJourneyItSpec.scala │ ├── repositories │ └── CachingItSpec.scala │ ├── resources │ ├── citizen-details.json │ ├── dashboard-data.json │ ├── person-details.json │ ├── reconciliations.json │ └── tax-components.json │ └── testUtils │ ├── FileHelper.scala │ ├── IntegrationSpec.scala │ └── WireMockHelper.scala ├── local-portal ├── running-local-portal.md ├── startLocalPortal.sh └── stopLocalPortal.sh ├── project ├── AppDependencies.scala ├── build.properties └── plugins.sbt ├── public ├── css │ ├── applicationMin.css │ └── ie.css └── images │ ├── HMRC-logo.jpg │ ├── HMRC-logo.png │ ├── covid-icon.png │ ├── covid-icon.svg │ ├── print-icon.png │ └── tick.png ├── repository.yaml ├── scalastyle-config.xml └── test ├── config ├── ConfigDecoratorSpec.scala └── NewsAndTilesConfigSpec.scala ├── connectors ├── AddressLookupConnectorSpec.scala ├── BreathingSpaceConnectorSpec.scala ├── CachingAgentClientAuthorisationConnectorSpec.scala ├── CachingCitizenDetailsConnectorSpec.scala ├── CachingEnrolmentsConnectorSpec.scala ├── CachingTaiConnectorSpec.scala ├── CitizenDetailsConnectorSpec.scala ├── ConnectorSpec.scala ├── DefaultAgentClientAuthorisationConnectorSpec.scala ├── DefaultEnrolmentsConnectorSpec.scala ├── DefaultTaiConnectorSpec.scala ├── EnhancedPartialRetrieverSpec.scala ├── HttpClientResponseSpec.scala ├── IdentityVerificationFrontendConnectorSpec.scala ├── PayApiConnectorSpec.scala ├── PertaxConnectorSpec.scala ├── PreferencesFrontendConnectorSpec.scala ├── SeissConnectorSpec.scala ├── SelfAssessmentConnectorSpec.scala └── UsersGroupsSearchConnectorSpec.scala ├── controllers ├── ApplicationControllerSpec.scala ├── HomeControllerSpec.scala ├── InterstitialControllerSpec.scala ├── LanguageControllerSpec.scala ├── MessageControllerSpec.scala ├── NiLetterControllerSpec.scala ├── PaperlessPreferencesControllerSpec.scala ├── PaymentsControllerSpec.scala ├── PertaxBaseControllerSpec.scala ├── PublicControllerSpec.scala ├── RlsControllerSpec.scala ├── SaBppInterstitialPageControllerSpec.scala ├── SaWrongCredentialsControllerSpec.scala ├── SelfAssessmentControllerSpec.scala ├── SessionManagementControllerSpec.scala ├── address │ ├── AddressControllerSpec.scala │ ├── AddressErrorControllerSpec.scala │ ├── AddressSelectorControllerSpec.scala │ ├── AddressSubmissionControllerSpec.scala │ ├── ClosePostalAddressControllerSpec.scala │ ├── DoYouLiveInTheUKControllerSpec.scala │ ├── PersonalDetailsControllerSpec.scala │ ├── PostalDoYouLiveInTheUKControllerSpec.scala │ ├── PostcodeLookupControllerSpec.scala │ ├── StartChangeOfAddressControllerSpec.scala │ ├── StartDateControllerSpec.scala │ ├── UpdateAddressControllerSpec.scala │ └── UpdateInternationalAddressControllerSpec.scala ├── auth │ ├── AuthRetrievalsSpec.scala │ ├── PertaxAuthActionSpec.scala │ ├── SelfAssessmentStatusActionSpec.scala │ └── requests │ │ └── UserRequestSpec.scala ├── bindable │ └── OriginSpec.scala └── controllershelpers │ ├── AddressSubmissionControllerHelperSpec.scala │ ├── HomeCardGeneratorSpec.scala │ ├── PaperlessInterruptHelperSpec.scala │ └── RlsInterruptHelperSpec.scala ├── error └── LocalErrorHandlerSpec.scala ├── models ├── AddressJourneyDataSpec.scala ├── DateTupleSpec.scala ├── EtagSpec.scala ├── ModelsSpec.scala ├── PayApiModelsSpec.scala ├── PersonDetailsSpec.scala ├── SelfAssessmentUserTypeSpec.scala ├── SummaryCardPartialSpec.scala ├── TaxComponentsSpec.scala ├── UserAnswersSpec.scala ├── addressLookup │ ├── AddressRecordSpec.scala │ ├── AddressSpec.scala │ └── RecordSetSpec.scala └── dto │ ├── AddressDtoSpec.scala │ ├── AddressFinderDtoSpec.scala │ └── DateDtoSpec.scala ├── repositories ├── EditAddressLockRepositorySpec.scala ├── JourneyCacheRepositorySpec.scala └── SessionCacheRepositorySpec.scala ├── resources ├── address-lookup │ ├── recordSet.json │ └── recordSetWithMissingAddressLines.json ├── application.conf ├── paperless-status │ ├── PaperlessStatusAlright.json │ └── PaperlessStatusBounced.json └── tcs │ └── dashboard-data.json ├── services ├── AddressMovedServiceSpec.scala ├── AddressSelectorServiceSpec.scala ├── BreathingSpaceServiceSpec.scala ├── CacheServiceSpec.scala ├── CitizenDetailsServiceSpec.scala ├── EnrolmentStoreCachingServiceSpec.scala ├── FormPartialServiceSpec.scala ├── IdentityVerificationFrontendServiceSpec.scala ├── MessageFrontendServiceSpec.scala ├── SeissServiceSpec.scala ├── SelfAssessmentServiceSpec.scala ├── TaiServiceSpec.scala ├── TaxCalcPartialServiceSpec.scala └── URLServiceSpec.scala ├── testUtils ├── Addresses.scala ├── BaseSpec.scala ├── BetterOptionValues.scala ├── FileHelper.scala ├── Fixtures.scala ├── NullMetrics.scala ├── RetrievalOps.scala ├── UserRequestFixture.scala ├── WireMockHelper.scala ├── fakes │ ├── FakeAuthJourney.scala │ ├── FakePaperlessInterruptHelper.scala │ └── FakeRlsInterruptHelper.scala └── fixtures │ ├── AddressFixture.scala │ └── PersonFixture.scala ├── util ├── AlertBannerHelperSpec.scala ├── DateTimeToolsSpec.scala ├── EnrolmentsHelperSpec.scala ├── LocalDateUtilitiesSpec.scala ├── MessagesSpec.scala ├── PertaxValidatorsSpec.scala ├── RateLimiterSpec.scala ├── TemplateFunctionSpec.scala └── ToolsSpec.scala ├── viewmodels ├── AddressRowModelSpec.scala ├── HomeViewModelSpec.scala └── PersonalDetailsViewModelSpec.scala └── views └── html ├── HomeViewSpec.scala ├── ViewSpec.scala ├── address ├── PostalInternationalAddressChoiceViewSpec.scala └── ReviewChangesViewSpec.scala ├── cards ├── ChildBenefitSingleAccountViewSpec.scala ├── ItsaMergeViewSpec.scala ├── LatestNewsAndUpdatesViewSpec.scala ├── NISPViewSpec.scala ├── PayAsYouEarnViewSpec.scala ├── SaMergeViewSpec.scala └── TrustedHelpersViewSpec.scala ├── interstitial ├── MTDITAdvertPageViewSpec.scala ├── TaxCreditsEndedInformationInterstitialViewSpec.scala ├── ViewBreathingSpaceViewSpec.scala ├── ViewChildBenefitsSummarySingleAccountInterstitialViewSpec.scala ├── ViewHICBCChargeInPAYEViewSpec.scala ├── ViewItsaMergePageViewSpec.scala ├── ViewNISPViewSpec.scala ├── ViewNationalInsuranceInterstitialHomeViewSpec.scala └── ViewNewsAndUpdatesViewSpec.scala └── personaldetails └── StartChangeOfAddressViewSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/README.md -------------------------------------------------------------------------------- /a11y/testUtils/A11ySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/a11y/testUtils/A11ySpec.scala -------------------------------------------------------------------------------- /a11y/views/testSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/a11y/views/testSpec.scala -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/assets/images/appstore-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/images/appstore-link.png -------------------------------------------------------------------------------- /app/assets/images/googleplay-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/images/googleplay-link.png -------------------------------------------------------------------------------- /app/assets/javascripts/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/javascripts/card.js -------------------------------------------------------------------------------- /app/assets/javascripts/pertaxBacklink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/javascripts/pertaxBacklink.js -------------------------------------------------------------------------------- /app/assets/javascripts/webChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/javascripts/webChat.js -------------------------------------------------------------------------------- /app/assets/stylesheets/_bta-partial.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/stylesheets/_bta-partial.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/stylesheets/_card.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_flexbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/stylesheets/_flexbox.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modules/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/stylesheets/modules/_colors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/partials/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/stylesheets/partials/_home.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pertaxMain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/assets/stylesheets/pertaxMain.scss -------------------------------------------------------------------------------- /app/config/ApplicationStartUp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/config/ApplicationStartUp.scala -------------------------------------------------------------------------------- /app/config/ConfigDecorator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/config/ConfigDecorator.scala -------------------------------------------------------------------------------- /app/config/CryptoProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/config/CryptoProvider.scala -------------------------------------------------------------------------------- /app/config/HmrcModule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/config/HmrcModule.scala -------------------------------------------------------------------------------- /app/config/NewsAndTilesConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/config/NewsAndTilesConfig.scala -------------------------------------------------------------------------------- /app/config/SensitiveT.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/config/SensitiveT.scala -------------------------------------------------------------------------------- /app/connectors/AddressLookupConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/AddressLookupConnector.scala -------------------------------------------------------------------------------- /app/connectors/AgentClientAuthorisationConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/AgentClientAuthorisationConnector.scala -------------------------------------------------------------------------------- /app/connectors/BreathingSpaceConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/BreathingSpaceConnector.scala -------------------------------------------------------------------------------- /app/connectors/CitizenDetailsConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/CitizenDetailsConnector.scala -------------------------------------------------------------------------------- /app/connectors/EnhancedPartialRetriever.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/EnhancedPartialRetriever.scala -------------------------------------------------------------------------------- /app/connectors/EnrolmentsConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/EnrolmentsConnector.scala -------------------------------------------------------------------------------- /app/connectors/HttpClientResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/HttpClientResponse.scala -------------------------------------------------------------------------------- /app/connectors/IdentityVerificationFrontendConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/IdentityVerificationFrontendConnector.scala -------------------------------------------------------------------------------- /app/connectors/PayApiConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/PayApiConnector.scala -------------------------------------------------------------------------------- /app/connectors/PertaxConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/PertaxConnector.scala -------------------------------------------------------------------------------- /app/connectors/PreferencesFrontendConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/PreferencesFrontendConnector.scala -------------------------------------------------------------------------------- /app/connectors/SeissConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/SeissConnector.scala -------------------------------------------------------------------------------- /app/connectors/SelfAssessmentConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/SelfAssessmentConnector.scala -------------------------------------------------------------------------------- /app/connectors/TaiConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/TaiConnector.scala -------------------------------------------------------------------------------- /app/connectors/UserGroupSearchConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/connectors/UserGroupSearchConnector.scala -------------------------------------------------------------------------------- /app/controllers/ApplicationController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/ApplicationController.scala -------------------------------------------------------------------------------- /app/controllers/AssetsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/AssetsController.scala -------------------------------------------------------------------------------- /app/controllers/HomeController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/HomeController.scala -------------------------------------------------------------------------------- /app/controllers/LanguageSwitchController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/LanguageSwitchController.scala -------------------------------------------------------------------------------- /app/controllers/MessageController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/MessageController.scala -------------------------------------------------------------------------------- /app/controllers/NiLetterController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/NiLetterController.scala -------------------------------------------------------------------------------- /app/controllers/PaperlessPreferencesController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/PaperlessPreferencesController.scala -------------------------------------------------------------------------------- /app/controllers/PaymentsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/PaymentsController.scala -------------------------------------------------------------------------------- /app/controllers/PertaxBaseController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/PertaxBaseController.scala -------------------------------------------------------------------------------- /app/controllers/PublicController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/PublicController.scala -------------------------------------------------------------------------------- /app/controllers/RlsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/RlsController.scala -------------------------------------------------------------------------------- /app/controllers/SaBppInterstitialPageController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/SaBppInterstitialPageController.scala -------------------------------------------------------------------------------- /app/controllers/SaWrongCredentialsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/SaWrongCredentialsController.scala -------------------------------------------------------------------------------- /app/controllers/SelfAssessmentController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/SelfAssessmentController.scala -------------------------------------------------------------------------------- /app/controllers/SessionManagementController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/SessionManagementController.scala -------------------------------------------------------------------------------- /app/controllers/UpdateDetailsErrorController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/UpdateDetailsErrorController.scala -------------------------------------------------------------------------------- /app/controllers/address/AddressController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/AddressController.scala -------------------------------------------------------------------------------- /app/controllers/address/AddressErrorController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/AddressErrorController.scala -------------------------------------------------------------------------------- /app/controllers/address/AddressSelectorController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/AddressSelectorController.scala -------------------------------------------------------------------------------- /app/controllers/address/AddressSubmissionController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/AddressSubmissionController.scala -------------------------------------------------------------------------------- /app/controllers/address/ClosePostalAddressController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/ClosePostalAddressController.scala -------------------------------------------------------------------------------- /app/controllers/address/DoYouLiveInTheUKController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/DoYouLiveInTheUKController.scala -------------------------------------------------------------------------------- /app/controllers/address/PersonalDetailsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/PersonalDetailsController.scala -------------------------------------------------------------------------------- /app/controllers/address/PostalDoYouLiveInTheUKController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/PostalDoYouLiveInTheUKController.scala -------------------------------------------------------------------------------- /app/controllers/address/PostcodeLookupController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/PostcodeLookupController.scala -------------------------------------------------------------------------------- /app/controllers/address/StartChangeOfAddressController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/StartChangeOfAddressController.scala -------------------------------------------------------------------------------- /app/controllers/address/StartDateController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/StartDateController.scala -------------------------------------------------------------------------------- /app/controllers/address/UpdateAddressController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/UpdateAddressController.scala -------------------------------------------------------------------------------- /app/controllers/address/UpdateInternationalAddressController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/address/UpdateInternationalAddressController.scala -------------------------------------------------------------------------------- /app/controllers/auth/AuditTags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/AuditTags.scala -------------------------------------------------------------------------------- /app/controllers/auth/AuthJourney.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/AuthJourney.scala -------------------------------------------------------------------------------- /app/controllers/auth/AuthRetrievals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/AuthRetrievals.scala -------------------------------------------------------------------------------- /app/controllers/auth/InternalAuthAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/InternalAuthAction.scala -------------------------------------------------------------------------------- /app/controllers/auth/PertaxAuthAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/PertaxAuthAction.scala -------------------------------------------------------------------------------- /app/controllers/auth/SelfAssessmentStatusAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/SelfAssessmentStatusAction.scala -------------------------------------------------------------------------------- /app/controllers/auth/WithBreadcrumbAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/WithBreadcrumbAction.scala -------------------------------------------------------------------------------- /app/controllers/auth/requests/AuthenticatedRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/requests/AuthenticatedRequest.scala -------------------------------------------------------------------------------- /app/controllers/auth/requests/UserRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/auth/requests/UserRequest.scala -------------------------------------------------------------------------------- /app/controllers/bindable/AddrType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/bindable/AddrType.scala -------------------------------------------------------------------------------- /app/controllers/bindable/Origin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/bindable/Origin.scala -------------------------------------------------------------------------------- /app/controllers/bindable/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/bindable/package.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/AddressJourneyAuditingHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/AddressJourneyAuditingHelper.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/AddressJourneyCachingHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/AddressJourneyCachingHelper.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/AddressSubmissionControllerHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/AddressSubmissionControllerHelper.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/CountryHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/CountryHelper.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/HomeCardGenerator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/HomeCardGenerator.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/PaperlessInterruptHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/PaperlessInterruptHelper.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/RlsInterruptHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/RlsInterruptHelper.scala -------------------------------------------------------------------------------- /app/controllers/controllershelpers/WelshWarningHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/controllershelpers/WelshWarningHelper.scala -------------------------------------------------------------------------------- /app/controllers/interstitials/InterstitialController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/interstitials/InterstitialController.scala -------------------------------------------------------------------------------- /app/controllers/interstitials/MtdAdvertInterstitialController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/interstitials/MtdAdvertInterstitialController.scala -------------------------------------------------------------------------------- /app/controllers/testOnly/FeatureFlagsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/controllers/testOnly/FeatureFlagsController.scala -------------------------------------------------------------------------------- /app/error/ErrorRenderer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/error/ErrorRenderer.scala -------------------------------------------------------------------------------- /app/error/LocalErrorHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/error/LocalErrorHandler.scala -------------------------------------------------------------------------------- /app/models/Address.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/Address.scala -------------------------------------------------------------------------------- /app/models/AddressJourneyData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/AddressJourneyData.scala -------------------------------------------------------------------------------- /app/models/AddressJourneyTTLModels.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/AddressJourneyTTLModels.scala -------------------------------------------------------------------------------- /app/models/AddressMoved.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/AddressMoved.scala -------------------------------------------------------------------------------- /app/models/AddressesLock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/AddressesLock.scala -------------------------------------------------------------------------------- /app/models/AgentClientStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/AgentClientStatus.scala -------------------------------------------------------------------------------- /app/models/BreathingSpaceIndicator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/BreathingSpaceIndicator.scala -------------------------------------------------------------------------------- /app/models/BreathingSpaceIndicatorResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/BreathingSpaceIndicatorResponse.scala -------------------------------------------------------------------------------- /app/models/Country.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/Country.scala -------------------------------------------------------------------------------- /app/models/DateTuple.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/DateTuple.scala -------------------------------------------------------------------------------- /app/models/ETag.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/ETag.scala -------------------------------------------------------------------------------- /app/models/EnrolmentStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/EnrolmentStatus.scala -------------------------------------------------------------------------------- /app/models/ErrorView.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/ErrorView.scala -------------------------------------------------------------------------------- /app/models/ItsaEnrolment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/ItsaEnrolment.scala -------------------------------------------------------------------------------- /app/models/LocalTaxYearResolver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/LocalTaxYearResolver.scala -------------------------------------------------------------------------------- /app/models/MessageCount.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/MessageCount.scala -------------------------------------------------------------------------------- /app/models/MtdUserType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/MtdUserType.scala -------------------------------------------------------------------------------- /app/models/NewsAndContentModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/NewsAndContentModel.scala -------------------------------------------------------------------------------- /app/models/PaperlessStatusMessages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/PaperlessStatusMessages.scala -------------------------------------------------------------------------------- /app/models/PayApiModels.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/PayApiModels.scala -------------------------------------------------------------------------------- /app/models/PaymentRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/PaymentRequest.scala -------------------------------------------------------------------------------- /app/models/Person.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/Person.scala -------------------------------------------------------------------------------- /app/models/PersonDetails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/PersonDetails.scala -------------------------------------------------------------------------------- /app/models/PertaxResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/PertaxResponse.scala -------------------------------------------------------------------------------- /app/models/ReconciliationStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/ReconciliationStatus.scala -------------------------------------------------------------------------------- /app/models/SaEnrolmentRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SaEnrolmentRequest.scala -------------------------------------------------------------------------------- /app/models/SeissModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SeissModel.scala -------------------------------------------------------------------------------- /app/models/SeissRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SeissRequest.scala -------------------------------------------------------------------------------- /app/models/SelectSABPPPaymentModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SelectSABPPPaymentModel.scala -------------------------------------------------------------------------------- /app/models/SelfAssessmentEnrolment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SelfAssessmentEnrolment.scala -------------------------------------------------------------------------------- /app/models/SelfAssessmentUserType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SelfAssessmentUserType.scala -------------------------------------------------------------------------------- /app/models/SummaryCardPartial.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/SummaryCardPartial.scala -------------------------------------------------------------------------------- /app/models/TaxComponents.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/TaxComponents.scala -------------------------------------------------------------------------------- /app/models/UnusedAllowance.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/UnusedAllowance.scala -------------------------------------------------------------------------------- /app/models/UserAnswers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/UserAnswers.scala -------------------------------------------------------------------------------- /app/models/UserDetails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/UserDetails.scala -------------------------------------------------------------------------------- /app/models/UserName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/UserName.scala -------------------------------------------------------------------------------- /app/models/addresslookup/Address.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/addresslookup/Address.scala -------------------------------------------------------------------------------- /app/models/addresslookup/AddressLookup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/addresslookup/AddressLookup.scala -------------------------------------------------------------------------------- /app/models/addresslookup/AddressRecord.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/addresslookup/AddressRecord.scala -------------------------------------------------------------------------------- /app/models/addresslookup/Country.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/addresslookup/Country.scala -------------------------------------------------------------------------------- /app/models/addresslookup/RecordSet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/addresslookup/RecordSet.scala -------------------------------------------------------------------------------- /app/models/admin/FeatureFlags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/admin/FeatureFlags.scala -------------------------------------------------------------------------------- /app/models/dto/AddressDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/AddressDto.scala -------------------------------------------------------------------------------- /app/models/dto/AddressFinderDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/AddressFinderDto.scala -------------------------------------------------------------------------------- /app/models/dto/AddressPageVisitedDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/AddressPageVisitedDto.scala -------------------------------------------------------------------------------- /app/models/dto/AddressSelectorDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/AddressSelectorDto.scala -------------------------------------------------------------------------------- /app/models/dto/ClosePostalAddressChoiceDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/ClosePostalAddressChoiceDto.scala -------------------------------------------------------------------------------- /app/models/dto/DateDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/DateDto.scala -------------------------------------------------------------------------------- /app/models/dto/Dto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/Dto.scala -------------------------------------------------------------------------------- /app/models/dto/InternationalAddressChoiceDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/InternationalAddressChoiceDto.scala -------------------------------------------------------------------------------- /app/models/dto/ResidencyChoiceDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/ResidencyChoiceDto.scala -------------------------------------------------------------------------------- /app/models/dto/SAWrongCredentialsDto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/dto/SAWrongCredentialsDto.scala -------------------------------------------------------------------------------- /app/models/enrolments/AccountDetails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/AccountDetails.scala -------------------------------------------------------------------------------- /app/models/enrolments/EACDEnrolment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/EACDEnrolment.scala -------------------------------------------------------------------------------- /app/models/enrolments/EnrolmentEnum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/EnrolmentEnum.scala -------------------------------------------------------------------------------- /app/models/enrolments/IdentifiersOrVerifiers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/IdentifiersOrVerifiers.scala -------------------------------------------------------------------------------- /app/models/enrolments/IdentityProviderType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/IdentityProviderType.scala -------------------------------------------------------------------------------- /app/models/enrolments/KnownFactsRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/KnownFactsRequest.scala -------------------------------------------------------------------------------- /app/models/enrolments/KnownFactsResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/KnownFactsResponse.scala -------------------------------------------------------------------------------- /app/models/enrolments/UsersAssignedEnrolment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/UsersAssignedEnrolment.scala -------------------------------------------------------------------------------- /app/models/enrolments/UsersGroupResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/enrolments/UsersGroupResponse.scala -------------------------------------------------------------------------------- /app/models/models.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/models/models.scala -------------------------------------------------------------------------------- /app/queries/Query.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/queries/Query.scala -------------------------------------------------------------------------------- /app/repositories/EditAddressLockRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/repositories/EditAddressLockRepository.scala -------------------------------------------------------------------------------- /app/repositories/EncryptedSessionCacheRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/repositories/EncryptedSessionCacheRepository.scala -------------------------------------------------------------------------------- /app/repositories/JourneyCacheRepository.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/repositories/JourneyCacheRepository.scala -------------------------------------------------------------------------------- /app/routePages/AddressFinderPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/AddressFinderPage.scala -------------------------------------------------------------------------------- /app/routePages/HasAddressAlreadyVisitedPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/HasAddressAlreadyVisitedPage.scala -------------------------------------------------------------------------------- /app/routePages/QuestionPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/QuestionPage.scala -------------------------------------------------------------------------------- /app/routePages/SelectedAddressRecordPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SelectedAddressRecordPage.scala -------------------------------------------------------------------------------- /app/routePages/SelectedRecordSetPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SelectedRecordSetPage.scala -------------------------------------------------------------------------------- /app/routePages/SelfAssessmentUserTypePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SelfAssessmentUserTypePage.scala -------------------------------------------------------------------------------- /app/routePages/SubmittedAddressPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SubmittedAddressPage.scala -------------------------------------------------------------------------------- /app/routePages/SubmittedInternationalAddressChoicePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SubmittedInternationalAddressChoicePage.scala -------------------------------------------------------------------------------- /app/routePages/SubmittedResidencyChoicePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SubmittedResidencyChoicePage.scala -------------------------------------------------------------------------------- /app/routePages/SubmittedStartDatePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/routePages/SubmittedStartDatePage.scala -------------------------------------------------------------------------------- /app/services/AddressMovedService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/AddressMovedService.scala -------------------------------------------------------------------------------- /app/services/AddressSelectorService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/AddressSelectorService.scala -------------------------------------------------------------------------------- /app/services/AgentClientAuthorisationService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/AgentClientAuthorisationService.scala -------------------------------------------------------------------------------- /app/services/BreathingSpaceService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/BreathingSpaceService.scala -------------------------------------------------------------------------------- /app/services/CacheService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/CacheService.scala -------------------------------------------------------------------------------- /app/services/CitizenDetailsService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/CitizenDetailsService.scala -------------------------------------------------------------------------------- /app/services/EnrolmentStoreProxyService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/EnrolmentStoreProxyService.scala -------------------------------------------------------------------------------- /app/services/IdentityVerificationFrontendService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/IdentityVerificationFrontendService.scala -------------------------------------------------------------------------------- /app/services/SeissService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/SeissService.scala -------------------------------------------------------------------------------- /app/services/SelfAssessmentService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/SelfAssessmentService.scala -------------------------------------------------------------------------------- /app/services/TaiService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/TaiService.scala -------------------------------------------------------------------------------- /app/services/URLService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/URLService.scala -------------------------------------------------------------------------------- /app/services/partials/FormPartialService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/partials/FormPartialService.scala -------------------------------------------------------------------------------- /app/services/partials/MessageFrontendService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/partials/MessageFrontendService.scala -------------------------------------------------------------------------------- /app/services/partials/SaPartialService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/partials/SaPartialService.scala -------------------------------------------------------------------------------- /app/services/partials/TaxCalcPartialService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/services/partials/TaxCalcPartialService.scala -------------------------------------------------------------------------------- /app/util/AlertBannerHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/AlertBannerHelper.scala -------------------------------------------------------------------------------- /app/util/AuditServiceTools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/AuditServiceTools.scala -------------------------------------------------------------------------------- /app/util/DateTimeTools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/DateTimeTools.scala -------------------------------------------------------------------------------- /app/util/EnrolmentsHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/EnrolmentsHelper.scala -------------------------------------------------------------------------------- /app/util/Enumerable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/Enumerable.scala -------------------------------------------------------------------------------- /app/util/EtagError.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/EtagError.scala -------------------------------------------------------------------------------- /app/util/Formatters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/Formatters.scala -------------------------------------------------------------------------------- /app/util/FutureEarlyTimeout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/FutureEarlyTimeout.scala -------------------------------------------------------------------------------- /app/util/LocalDateUtilities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/LocalDateUtilities.scala -------------------------------------------------------------------------------- /app/util/PertaxSessionKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/PertaxSessionKeys.scala -------------------------------------------------------------------------------- /app/util/PertaxValidators.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/PertaxValidators.scala -------------------------------------------------------------------------------- /app/util/RateLimiter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/RateLimiter.scala -------------------------------------------------------------------------------- /app/util/TaxYearRetriever.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/TaxYearRetriever.scala -------------------------------------------------------------------------------- /app/util/TemplateFunctions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/TemplateFunctions.scala -------------------------------------------------------------------------------- /app/util/Tools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/Tools.scala -------------------------------------------------------------------------------- /app/util/WithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/util/WithName.scala -------------------------------------------------------------------------------- /app/viewmodels/AddressRowModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/viewmodels/AddressRowModel.scala -------------------------------------------------------------------------------- /app/viewmodels/AlertBannerViewModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/viewmodels/AlertBannerViewModel.scala -------------------------------------------------------------------------------- /app/viewmodels/HomeViewModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/viewmodels/HomeViewModel.scala -------------------------------------------------------------------------------- /app/viewmodels/PersonalDetailsTableRowModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/viewmodels/PersonalDetailsTableRowModel.scala -------------------------------------------------------------------------------- /app/viewmodels/PersonalDetailsViewModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/viewmodels/PersonalDetailsViewModel.scala -------------------------------------------------------------------------------- /app/views/ErrorView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/ErrorView.scala.html -------------------------------------------------------------------------------- /app/views/HomeView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/HomeView.scala.html -------------------------------------------------------------------------------- /app/views/InternalServerErrorView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/InternalServerErrorView.scala.html -------------------------------------------------------------------------------- /app/views/MainView.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/MainView.scala -------------------------------------------------------------------------------- /app/views/ManualCorrespondenceView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/ManualCorrespondenceView.scala.html -------------------------------------------------------------------------------- /app/views/SelfAssessmentSummaryView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/SelfAssessmentSummaryView.scala.html -------------------------------------------------------------------------------- /app/views/ShutteringView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/ShutteringView.scala.html -------------------------------------------------------------------------------- /app/views/UnauthenticatedErrorView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/UnauthenticatedErrorView.scala.html -------------------------------------------------------------------------------- /app/views/UnauthenticatedMainView.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/UnauthenticatedMainView.scala -------------------------------------------------------------------------------- /app/views/cards/home/ChildBenefitSingleAccountView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/ChildBenefitSingleAccountView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/ItsaMergeView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/ItsaMergeView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/LatestNewsAndUpdatesView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/LatestNewsAndUpdatesView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/MTDITAdvertTileView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/MTDITAdvertTileView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/MarriageAllowanceView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/MarriageAllowanceView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/NISPView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/NISPView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/PayAsYouEarnView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/PayAsYouEarnView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/SaMergeView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/SaMergeView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/SeissView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/SeissView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/SelfAssessmentRegistrationView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/SelfAssessmentRegistrationView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/TaxSummariesView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/TaxSummariesView.scala.html -------------------------------------------------------------------------------- /app/views/cards/home/TrustedHelpersView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/cards/home/TrustedHelpersView.scala.html -------------------------------------------------------------------------------- /app/views/components/AdditionalJavascript.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/AdditionalJavascript.scala.html -------------------------------------------------------------------------------- /app/views/components/Button.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/Button.scala.html -------------------------------------------------------------------------------- /app/views/components/ErrorSummary.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/ErrorSummary.scala.html -------------------------------------------------------------------------------- /app/views/components/FullWidthMainContent.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/FullWidthMainContent.scala.html -------------------------------------------------------------------------------- /app/views/components/H1.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/H1.scala.html -------------------------------------------------------------------------------- /app/views/components/H2.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/H2.scala.html -------------------------------------------------------------------------------- /app/views/components/H3.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/H3.scala.html -------------------------------------------------------------------------------- /app/views/components/HeadBlock.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/HeadBlock.scala.html -------------------------------------------------------------------------------- /app/views/components/InputDate.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/InputDate.scala.html -------------------------------------------------------------------------------- /app/views/components/InputRadios.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/InputRadios.scala.html -------------------------------------------------------------------------------- /app/views/components/InputValue.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/InputValue.scala.html -------------------------------------------------------------------------------- /app/views/components/InputYesNo.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/InputYesNo.scala.html -------------------------------------------------------------------------------- /app/views/components/Link.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/Link.scala.html -------------------------------------------------------------------------------- /app/views/components/P.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/P.scala.html -------------------------------------------------------------------------------- /app/views/components/P85Content.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/P85Content.scala.html -------------------------------------------------------------------------------- /app/views/components/alertBanner/AlertBanner.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/alertBanner/AlertBanner.scala.html -------------------------------------------------------------------------------- /app/views/components/alertBanner/paperlessStatus/bouncedEmail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/alertBanner/paperlessStatus/bouncedEmail.scala.html -------------------------------------------------------------------------------- /app/views/components/alertBanner/paperlessStatus/unverifiedEmail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/alertBanner/paperlessStatus/unverifiedEmail.scala.html -------------------------------------------------------------------------------- /app/views/components/alertBanner/paperlessStatus/voluntaryContributionsAlertView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/alertBanner/paperlessStatus/voluntaryContributionsAlertView.scala.html -------------------------------------------------------------------------------- /app/views/components/alertBanner/peakDemandBanner.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/components/alertBanner/peakDemandBanner.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/CheckYourStatePensionCallBackView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/CheckYourStatePensionCallBackView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/DisplayAddressInterstitialView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/DisplayAddressInterstitialView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/MTDITAdvertPageView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/MTDITAdvertPageView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/SPPInterstitialView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/SPPInterstitialView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/SelfAssessmentRegistrationPageView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/SelfAssessmentRegistrationPageView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/TaxCreditsEndedInformationInterstitialView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/TaxCreditsEndedInformationInterstitialView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewBreathingSpaceView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewBreathingSpaceView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewChildBenefitsSummarySingleAccountInterstitialView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewChildBenefitsSummarySingleAccountInterstitialView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewHICBCChargeInPAYEView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewHICBCChargeInPAYEView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewItsaMergePageView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewItsaMergePageView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewNISPView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewNISPView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewNationalInsuranceInterstitialHomeView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewNationalInsuranceInterstitialHomeView.scala.html -------------------------------------------------------------------------------- /app/views/interstitial/ViewNewsAndUpdatesView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/interstitial/ViewNewsAndUpdatesView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/CannotConfirmIdentityView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/CannotConfirmIdentityView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/FailedIvContinueToActivateSaView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/FailedIvContinueToActivateSaView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/FailedIvIncompleteView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/FailedIvIncompleteView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/FailedIvSaFilerWithNoEnrolmentView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/FailedIvSaFilerWithNoEnrolmentView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/LockedOutView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/LockedOutView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/TechnicalIssuesView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/TechnicalIssuesView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/TimeOutView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/TimeOutView.scala.html -------------------------------------------------------------------------------- /app/views/iv/failure/TwoFaFailIvSuccessView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/failure/TwoFaFailIvSuccessView.scala.html -------------------------------------------------------------------------------- /app/views/iv/start/ivStartPage.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/start/ivStartPage.scala.html -------------------------------------------------------------------------------- /app/views/iv/success/SuccessView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/iv/success/SuccessView.scala.html -------------------------------------------------------------------------------- /app/views/message/MessageDetailView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/message/MessageDetailView.scala.html -------------------------------------------------------------------------------- /app/views/message/MessageInboxView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/message/MessageInboxView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/AddressAlreadyUpdatedView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/AddressAlreadyUpdatedView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/AddressSelectorView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/AddressSelectorView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/CannotUpdateAddressEarlyDateView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/CannotUpdateAddressEarlyDateView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/CannotUpdateAddressFutureDateView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/CannotUpdateAddressFutureDateView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/CannotUseServiceView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/CannotUseServiceView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/CheckYourAddressInterruptView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/CheckYourAddressInterruptView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/CloseCorrespondenceAddressChoiceView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/CloseCorrespondenceAddressChoiceView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/ConfirmCloseCorrespondenceAddressView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/ConfirmCloseCorrespondenceAddressView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/EnterStartDateView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/EnterStartDateView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/InternationalAddressChoiceView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/InternationalAddressChoiceView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/PersonalDetailsView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/PersonalDetailsView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/PostcodeLookupView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/PostcodeLookupView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/ReviewChangesView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/ReviewChangesView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/StartChangeOfAddressView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/StartChangeOfAddressView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/TryAgainToUpdateDetailsView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/TryAgainToUpdateDetailsView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/UpdateAddressConfirmationView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/UpdateAddressConfirmationView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/UpdateAddressView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/UpdateAddressView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/UpdateInternationalAddressView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/UpdateInternationalAddressView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/partials/AddressUnavailableView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/partials/AddressUnavailableView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/partials/AddressView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/partials/AddressView.scala.html -------------------------------------------------------------------------------- /app/views/personaldetails/partials/CorrespondenceAddressView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/personaldetails/partials/CorrespondenceAddressView.scala.html -------------------------------------------------------------------------------- /app/views/preferences/managePrefs.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/preferences/managePrefs.scala.html -------------------------------------------------------------------------------- /app/views/print/NiLetterView.scala.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/public/SessionTimeoutView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/public/SessionTimeoutView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/DoYouKnowOtherCredentialsView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/DoYouKnowOtherCredentialsView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/DoYouKnowUserIdView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/DoYouKnowUserIdView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/FindYourUserIdView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/FindYourUserIdView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/NeedToResetPasswordView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/NeedToResetPasswordView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/RequestAccessToSelfAssessmentView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/RequestAccessToSelfAssessmentView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/Sa302InterruptView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/Sa302InterruptView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/SignInAgainView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/SignInAgainView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/SignedInWrongAccountView.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/SignedInWrongAccountView.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/selfAssessmentForm.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/selfAssessmentForm.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/selfAssessmentHeading.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/selfAssessmentHeading.scala.html -------------------------------------------------------------------------------- /app/views/selfassessment/selfAssessmentUtr.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/selfassessment/selfAssessmentUtr.scala.html -------------------------------------------------------------------------------- /app/views/tags/card.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/tags/card.scala.html -------------------------------------------------------------------------------- /app/views/tags/cardHelper.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/tags/cardHelper.scala.html -------------------------------------------------------------------------------- /app/views/tags/cardNewsAndUpdates.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/tags/cardNewsAndUpdates.scala.html -------------------------------------------------------------------------------- /app/views/tags/formattedNino.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/tags/formattedNino.scala.html -------------------------------------------------------------------------------- /app/views/tags/fullAddress.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/tags/fullAddress.scala.html -------------------------------------------------------------------------------- /app/views/tags/gaTrackAnchorEventTranslateLabel.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/app/views/tags/gaTrackAnchorEventTranslateLabel.scala.html -------------------------------------------------------------------------------- /conf/admin.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/admin.routes -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/logback.xml -------------------------------------------------------------------------------- /conf/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/messages -------------------------------------------------------------------------------- /conf/messages.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/messages.cy -------------------------------------------------------------------------------- /conf/no-logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/no-logger.xml -------------------------------------------------------------------------------- /conf/prod.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/prod.routes -------------------------------------------------------------------------------- /conf/testOnlyDoNotUseInAppConf.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/conf/testOnlyDoNotUseInAppConf.routes -------------------------------------------------------------------------------- /it/test/MainViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/MainViewSpec.scala -------------------------------------------------------------------------------- /it/test/address/PersonalDetailsControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/address/PersonalDetailsControllerSpec.scala -------------------------------------------------------------------------------- /it/test/address/RLSInterruptPageSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/address/RLSInterruptPageSpec.scala -------------------------------------------------------------------------------- /it/test/controllers/ContentsCheckSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/ContentsCheckSpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerAlertBannerISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerAlertBannerISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerBreathingSpaceISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerBreathingSpaceISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerChildBenefitsISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerChildBenefitsISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerErrorISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerErrorISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerFeedbackISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerFeedbackISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerMarriageAllowanceISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerMarriageAllowanceISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerMciISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerMciISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerNISPISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerNISPISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerPayeISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerPayeISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerScaISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerScaISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerSelfAssessmentISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerSelfAssessmentISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerTrustedHelperISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerTrustedHelperISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/HomeControllerWebChatISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/HomeControllerWebChatISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/PersonalDetailsControllerItSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/PersonalDetailsControllerItSpec.scala -------------------------------------------------------------------------------- /it/test/controllers/PostcodeLookupControllerISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/PostcodeLookupControllerISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/TimeoutsISpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/TimeoutsISpec.scala -------------------------------------------------------------------------------- /it/test/controllers/auth/AuthJourneyItSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/controllers/auth/AuthJourneyItSpec.scala -------------------------------------------------------------------------------- /it/test/repositories/CachingItSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/repositories/CachingItSpec.scala -------------------------------------------------------------------------------- /it/test/resources/citizen-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/resources/citizen-details.json -------------------------------------------------------------------------------- /it/test/resources/dashboard-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/resources/dashboard-data.json -------------------------------------------------------------------------------- /it/test/resources/person-details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/resources/person-details.json -------------------------------------------------------------------------------- /it/test/resources/reconciliations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/resources/reconciliations.json -------------------------------------------------------------------------------- /it/test/resources/tax-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/resources/tax-components.json -------------------------------------------------------------------------------- /it/test/testUtils/FileHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/testUtils/FileHelper.scala -------------------------------------------------------------------------------- /it/test/testUtils/IntegrationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/testUtils/IntegrationSpec.scala -------------------------------------------------------------------------------- /it/test/testUtils/WireMockHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/it/test/testUtils/WireMockHelper.scala -------------------------------------------------------------------------------- /local-portal/running-local-portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/local-portal/running-local-portal.md -------------------------------------------------------------------------------- /local-portal/startLocalPortal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/local-portal/startLocalPortal.sh -------------------------------------------------------------------------------- /local-portal/stopLocalPortal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/local-portal/stopLocalPortal.sh -------------------------------------------------------------------------------- /project/AppDependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/project/AppDependencies.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.10.10 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /public/css/applicationMin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/css/applicationMin.css -------------------------------------------------------------------------------- /public/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/css/ie.css -------------------------------------------------------------------------------- /public/images/HMRC-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/images/HMRC-logo.jpg -------------------------------------------------------------------------------- /public/images/HMRC-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/images/HMRC-logo.png -------------------------------------------------------------------------------- /public/images/covid-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/images/covid-icon.png -------------------------------------------------------------------------------- /public/images/covid-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/images/covid-icon.svg -------------------------------------------------------------------------------- /public/images/print-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/images/print-icon.png -------------------------------------------------------------------------------- /public/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/public/images/tick.png -------------------------------------------------------------------------------- /repository.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/repository.yaml -------------------------------------------------------------------------------- /scalastyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/scalastyle-config.xml -------------------------------------------------------------------------------- /test/config/ConfigDecoratorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/config/ConfigDecoratorSpec.scala -------------------------------------------------------------------------------- /test/config/NewsAndTilesConfigSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/config/NewsAndTilesConfigSpec.scala -------------------------------------------------------------------------------- /test/connectors/AddressLookupConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/AddressLookupConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/BreathingSpaceConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/BreathingSpaceConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/CachingAgentClientAuthorisationConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/CachingAgentClientAuthorisationConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/CachingCitizenDetailsConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/CachingCitizenDetailsConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/CachingEnrolmentsConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/CachingEnrolmentsConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/CachingTaiConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/CachingTaiConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/CitizenDetailsConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/CitizenDetailsConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/ConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/ConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/DefaultAgentClientAuthorisationConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/DefaultAgentClientAuthorisationConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/DefaultEnrolmentsConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/DefaultEnrolmentsConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/DefaultTaiConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/DefaultTaiConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/EnhancedPartialRetrieverSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/EnhancedPartialRetrieverSpec.scala -------------------------------------------------------------------------------- /test/connectors/HttpClientResponseSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/HttpClientResponseSpec.scala -------------------------------------------------------------------------------- /test/connectors/IdentityVerificationFrontendConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/IdentityVerificationFrontendConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/PayApiConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/PayApiConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/PertaxConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/PertaxConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/PreferencesFrontendConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/PreferencesFrontendConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/SeissConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/SeissConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/SelfAssessmentConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/SelfAssessmentConnectorSpec.scala -------------------------------------------------------------------------------- /test/connectors/UsersGroupsSearchConnectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/connectors/UsersGroupsSearchConnectorSpec.scala -------------------------------------------------------------------------------- /test/controllers/ApplicationControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/ApplicationControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/HomeControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/HomeControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/InterstitialControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/InterstitialControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/LanguageControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/LanguageControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/MessageControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/MessageControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/NiLetterControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/NiLetterControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/PaperlessPreferencesControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/PaperlessPreferencesControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/PaymentsControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/PaymentsControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/PertaxBaseControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/PertaxBaseControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/PublicControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/PublicControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/RlsControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/RlsControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/SaBppInterstitialPageControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/SaBppInterstitialPageControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/SaWrongCredentialsControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/SaWrongCredentialsControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/SelfAssessmentControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/SelfAssessmentControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/SessionManagementControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/SessionManagementControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/AddressControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/AddressControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/AddressErrorControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/AddressErrorControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/AddressSelectorControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/AddressSelectorControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/AddressSubmissionControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/AddressSubmissionControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/ClosePostalAddressControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/ClosePostalAddressControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/DoYouLiveInTheUKControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/DoYouLiveInTheUKControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/PersonalDetailsControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/PersonalDetailsControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/PostalDoYouLiveInTheUKControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/PostalDoYouLiveInTheUKControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/PostcodeLookupControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/PostcodeLookupControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/StartChangeOfAddressControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/StartChangeOfAddressControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/StartDateControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/StartDateControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/UpdateAddressControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/UpdateAddressControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/address/UpdateInternationalAddressControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/address/UpdateInternationalAddressControllerSpec.scala -------------------------------------------------------------------------------- /test/controllers/auth/AuthRetrievalsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/auth/AuthRetrievalsSpec.scala -------------------------------------------------------------------------------- /test/controllers/auth/PertaxAuthActionSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/auth/PertaxAuthActionSpec.scala -------------------------------------------------------------------------------- /test/controllers/auth/SelfAssessmentStatusActionSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/auth/SelfAssessmentStatusActionSpec.scala -------------------------------------------------------------------------------- /test/controllers/auth/requests/UserRequestSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/auth/requests/UserRequestSpec.scala -------------------------------------------------------------------------------- /test/controllers/bindable/OriginSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/bindable/OriginSpec.scala -------------------------------------------------------------------------------- /test/controllers/controllershelpers/AddressSubmissionControllerHelperSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/controllershelpers/AddressSubmissionControllerHelperSpec.scala -------------------------------------------------------------------------------- /test/controllers/controllershelpers/HomeCardGeneratorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/controllershelpers/HomeCardGeneratorSpec.scala -------------------------------------------------------------------------------- /test/controllers/controllershelpers/PaperlessInterruptHelperSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/controllershelpers/PaperlessInterruptHelperSpec.scala -------------------------------------------------------------------------------- /test/controllers/controllershelpers/RlsInterruptHelperSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/controllers/controllershelpers/RlsInterruptHelperSpec.scala -------------------------------------------------------------------------------- /test/error/LocalErrorHandlerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/error/LocalErrorHandlerSpec.scala -------------------------------------------------------------------------------- /test/models/AddressJourneyDataSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/AddressJourneyDataSpec.scala -------------------------------------------------------------------------------- /test/models/DateTupleSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/DateTupleSpec.scala -------------------------------------------------------------------------------- /test/models/EtagSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/EtagSpec.scala -------------------------------------------------------------------------------- /test/models/ModelsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/ModelsSpec.scala -------------------------------------------------------------------------------- /test/models/PayApiModelsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/PayApiModelsSpec.scala -------------------------------------------------------------------------------- /test/models/PersonDetailsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/PersonDetailsSpec.scala -------------------------------------------------------------------------------- /test/models/SelfAssessmentUserTypeSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/SelfAssessmentUserTypeSpec.scala -------------------------------------------------------------------------------- /test/models/SummaryCardPartialSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/SummaryCardPartialSpec.scala -------------------------------------------------------------------------------- /test/models/TaxComponentsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/TaxComponentsSpec.scala -------------------------------------------------------------------------------- /test/models/UserAnswersSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/UserAnswersSpec.scala -------------------------------------------------------------------------------- /test/models/addressLookup/AddressRecordSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/addressLookup/AddressRecordSpec.scala -------------------------------------------------------------------------------- /test/models/addressLookup/AddressSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/addressLookup/AddressSpec.scala -------------------------------------------------------------------------------- /test/models/addressLookup/RecordSetSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/addressLookup/RecordSetSpec.scala -------------------------------------------------------------------------------- /test/models/dto/AddressDtoSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/dto/AddressDtoSpec.scala -------------------------------------------------------------------------------- /test/models/dto/AddressFinderDtoSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/dto/AddressFinderDtoSpec.scala -------------------------------------------------------------------------------- /test/models/dto/DateDtoSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/models/dto/DateDtoSpec.scala -------------------------------------------------------------------------------- /test/repositories/EditAddressLockRepositorySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/repositories/EditAddressLockRepositorySpec.scala -------------------------------------------------------------------------------- /test/repositories/JourneyCacheRepositorySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/repositories/JourneyCacheRepositorySpec.scala -------------------------------------------------------------------------------- /test/repositories/SessionCacheRepositorySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/repositories/SessionCacheRepositorySpec.scala -------------------------------------------------------------------------------- /test/resources/address-lookup/recordSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/resources/address-lookup/recordSet.json -------------------------------------------------------------------------------- /test/resources/address-lookup/recordSetWithMissingAddressLines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/resources/address-lookup/recordSetWithMissingAddressLines.json -------------------------------------------------------------------------------- /test/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/resources/application.conf -------------------------------------------------------------------------------- /test/resources/paperless-status/PaperlessStatusAlright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/resources/paperless-status/PaperlessStatusAlright.json -------------------------------------------------------------------------------- /test/resources/paperless-status/PaperlessStatusBounced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/resources/paperless-status/PaperlessStatusBounced.json -------------------------------------------------------------------------------- /test/resources/tcs/dashboard-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/resources/tcs/dashboard-data.json -------------------------------------------------------------------------------- /test/services/AddressMovedServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/AddressMovedServiceSpec.scala -------------------------------------------------------------------------------- /test/services/AddressSelectorServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/AddressSelectorServiceSpec.scala -------------------------------------------------------------------------------- /test/services/BreathingSpaceServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/BreathingSpaceServiceSpec.scala -------------------------------------------------------------------------------- /test/services/CacheServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/CacheServiceSpec.scala -------------------------------------------------------------------------------- /test/services/CitizenDetailsServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/CitizenDetailsServiceSpec.scala -------------------------------------------------------------------------------- /test/services/EnrolmentStoreCachingServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/EnrolmentStoreCachingServiceSpec.scala -------------------------------------------------------------------------------- /test/services/FormPartialServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/FormPartialServiceSpec.scala -------------------------------------------------------------------------------- /test/services/IdentityVerificationFrontendServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/IdentityVerificationFrontendServiceSpec.scala -------------------------------------------------------------------------------- /test/services/MessageFrontendServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/MessageFrontendServiceSpec.scala -------------------------------------------------------------------------------- /test/services/SeissServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/SeissServiceSpec.scala -------------------------------------------------------------------------------- /test/services/SelfAssessmentServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/SelfAssessmentServiceSpec.scala -------------------------------------------------------------------------------- /test/services/TaiServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/TaiServiceSpec.scala -------------------------------------------------------------------------------- /test/services/TaxCalcPartialServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/TaxCalcPartialServiceSpec.scala -------------------------------------------------------------------------------- /test/services/URLServiceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/services/URLServiceSpec.scala -------------------------------------------------------------------------------- /test/testUtils/Addresses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/Addresses.scala -------------------------------------------------------------------------------- /test/testUtils/BaseSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/BaseSpec.scala -------------------------------------------------------------------------------- /test/testUtils/BetterOptionValues.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/BetterOptionValues.scala -------------------------------------------------------------------------------- /test/testUtils/FileHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/FileHelper.scala -------------------------------------------------------------------------------- /test/testUtils/Fixtures.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/Fixtures.scala -------------------------------------------------------------------------------- /test/testUtils/NullMetrics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/NullMetrics.scala -------------------------------------------------------------------------------- /test/testUtils/RetrievalOps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/RetrievalOps.scala -------------------------------------------------------------------------------- /test/testUtils/UserRequestFixture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/UserRequestFixture.scala -------------------------------------------------------------------------------- /test/testUtils/WireMockHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/WireMockHelper.scala -------------------------------------------------------------------------------- /test/testUtils/fakes/FakeAuthJourney.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/fakes/FakeAuthJourney.scala -------------------------------------------------------------------------------- /test/testUtils/fakes/FakePaperlessInterruptHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/fakes/FakePaperlessInterruptHelper.scala -------------------------------------------------------------------------------- /test/testUtils/fakes/FakeRlsInterruptHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/fakes/FakeRlsInterruptHelper.scala -------------------------------------------------------------------------------- /test/testUtils/fixtures/AddressFixture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/fixtures/AddressFixture.scala -------------------------------------------------------------------------------- /test/testUtils/fixtures/PersonFixture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/testUtils/fixtures/PersonFixture.scala -------------------------------------------------------------------------------- /test/util/AlertBannerHelperSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/AlertBannerHelperSpec.scala -------------------------------------------------------------------------------- /test/util/DateTimeToolsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/DateTimeToolsSpec.scala -------------------------------------------------------------------------------- /test/util/EnrolmentsHelperSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/EnrolmentsHelperSpec.scala -------------------------------------------------------------------------------- /test/util/LocalDateUtilitiesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/LocalDateUtilitiesSpec.scala -------------------------------------------------------------------------------- /test/util/MessagesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/MessagesSpec.scala -------------------------------------------------------------------------------- /test/util/PertaxValidatorsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/PertaxValidatorsSpec.scala -------------------------------------------------------------------------------- /test/util/RateLimiterSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/RateLimiterSpec.scala -------------------------------------------------------------------------------- /test/util/TemplateFunctionSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/TemplateFunctionSpec.scala -------------------------------------------------------------------------------- /test/util/ToolsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/util/ToolsSpec.scala -------------------------------------------------------------------------------- /test/viewmodels/AddressRowModelSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/viewmodels/AddressRowModelSpec.scala -------------------------------------------------------------------------------- /test/viewmodels/HomeViewModelSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/viewmodels/HomeViewModelSpec.scala -------------------------------------------------------------------------------- /test/viewmodels/PersonalDetailsViewModelSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/viewmodels/PersonalDetailsViewModelSpec.scala -------------------------------------------------------------------------------- /test/views/html/HomeViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/HomeViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/ViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/ViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/address/PostalInternationalAddressChoiceViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/address/PostalInternationalAddressChoiceViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/address/ReviewChangesViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/address/ReviewChangesViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/ChildBenefitSingleAccountViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/ChildBenefitSingleAccountViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/ItsaMergeViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/ItsaMergeViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/LatestNewsAndUpdatesViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/LatestNewsAndUpdatesViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/NISPViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/NISPViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/PayAsYouEarnViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/PayAsYouEarnViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/SaMergeViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/SaMergeViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/cards/TrustedHelpersViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/cards/TrustedHelpersViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/MTDITAdvertPageViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/MTDITAdvertPageViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/TaxCreditsEndedInformationInterstitialViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/TaxCreditsEndedInformationInterstitialViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewBreathingSpaceViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewBreathingSpaceViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewChildBenefitsSummarySingleAccountInterstitialViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewChildBenefitsSummarySingleAccountInterstitialViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewHICBCChargeInPAYEViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewHICBCChargeInPAYEViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewItsaMergePageViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewItsaMergePageViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewNISPViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewNISPViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewNationalInsuranceInterstitialHomeViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewNationalInsuranceInterstitialHomeViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/interstitial/ViewNewsAndUpdatesViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/interstitial/ViewNewsAndUpdatesViewSpec.scala -------------------------------------------------------------------------------- /test/views/html/personaldetails/StartChangeOfAddressViewSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmrc/pertax-frontend/HEAD/test/views/html/personaldetails/StartChangeOfAddressViewSpec.scala --------------------------------------------------------------------------------