├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── images ├── health-check.png └── loremipsumcheck.png └── src ├── Our.Umbraco.HealthChecks.Web ├── App_Data │ ├── Umbraco.sdf │ └── packages │ │ ├── createdPackages.config │ │ └── installedPackages.config ├── App_Plugins │ └── ModelsBuilder │ │ ├── modelsbuilder.controller.js │ │ ├── modelsbuilder.resource.js │ │ └── package.manifest ├── Global.asax ├── Media │ ├── 17552d12081d4d01b68132c495d6576f │ │ └── 00000006000000000000000000000000 │ │ │ └── 7373036290_5e8420bf36_b.jpg │ ├── 1bc5280b8658402789d958e2576e469b │ │ └── 00000006000000000000000000000000 │ │ │ └── 14272036539_469ca21d5c_h.jpg │ ├── 1d0b713a022a49c8b842a2463c83a553 │ │ └── 00000006000000000000000000000000 │ │ │ └── 7373036208_30257976a0_b.jpg │ ├── 20e3a8ffad1b4fe9b48cb8461c46d2d0 │ │ └── 00000006000000000000000000000000 │ │ │ └── 7371127652_e01b6ab56f_b.jpg │ ├── 34371d0892c84015912ebaacd002c5d0 │ │ └── 00000006000000000000000000000000 │ │ │ └── 18530280048_459b8b61b2_h.jpg │ ├── 46a025d6095a4b148b961b59ca4e951c │ │ └── 00000006000000000000000000000000 │ │ │ └── 7377957524_347859faac_b.jpg │ ├── 55514845b8bd487cb3709724852fd6bb │ │ └── 00000006000000000000000000000000 │ │ │ └── 4730684907_8a7f8759cb_b.jpg │ ├── 662af6ca411a4c93a6c722c4845698e7 │ │ └── 00000006000000000000000000000000 │ │ │ └── 16403439029_f500be349b_o.jpg │ ├── Web.config │ ├── b76ddb4ee603401499066087984740ec │ │ └── 00000006000000000000000000000000 │ │ │ └── 5852022091_87c5d045ab_b.jpg │ ├── c0969cab13ab4de9819a848619ac2b5d │ │ └── 00000006000000000000000000000000 │ │ │ └── 18095416144_44a566a5f4_h.jpg │ ├── c09ec77f08e3466aac58c979befd3cd6 │ │ └── 00000006000000000000000000000000 │ │ │ └── 5852022211_9028df67c0_b.jpg │ ├── cf1ab8dcad0f4a8e974b87b84777b0d6 │ │ └── 00000006000000000000000000000000 │ │ │ └── 18720470241_ff77768544_h.jpg │ ├── eee91c05b2e84031a056dcd7f28eff89 │ │ └── 00000006000000000000000000000000 │ │ │ └── 18531852339_981b067419_h.jpg │ └── fa763e0d0ceb408c8720365d57e06e32 │ │ └── 00000006000000000000000000000000 │ │ └── 18531854019_351c579559_h.jpg ├── Our.Umbraco.HealthChecks.Web.csproj ├── Properties │ └── AssemblyInfo.cs ├── Views │ ├── Blog.cshtml │ ├── BlogPost.cshtml │ ├── Home.cshtml │ ├── MacroPartials │ │ ├── FeaturedProducts.cshtml │ │ └── LatestBlogposts.cshtml │ ├── Master.cshtml │ ├── Partials │ │ ├── CategoryLinks.cshtml │ │ ├── Grid │ │ │ ├── Bootstrap3-Fluid.cshtml │ │ │ ├── Bootstrap3.cshtml │ │ │ └── Editors │ │ │ │ ├── Base.cshtml │ │ │ │ ├── Embed.cshtml │ │ │ │ ├── Macro.cshtml │ │ │ │ ├── Media.cshtml │ │ │ │ ├── Rte.cshtml │ │ │ │ └── Textstring.cshtml │ │ ├── Navigation │ │ │ ├── SubNavigation.cshtml │ │ │ └── TopNavigation.cshtml │ │ └── SectionHeader.cshtml │ ├── Person.cshtml │ ├── Product.cshtml │ ├── Products.cshtml │ ├── Web.config │ ├── contact.cshtml │ ├── contentPage.cshtml │ └── people.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── config │ ├── BackOfficeTours │ │ └── getting-started.json │ ├── ClientDependency.config │ ├── HealthChecks.config │ ├── Lang │ │ ├── cs-CZ.user.xml │ │ ├── da-DK.user.xml │ │ ├── de-DE.user.xml │ │ ├── en-GB.user.xml │ │ ├── en-US.user.xml │ │ ├── es-ES.user.xml │ │ ├── fr-FR.user.xml │ │ ├── he-IL.user.xml │ │ ├── it-IT.user.xml │ │ ├── ja-JP.user.xml │ │ ├── ko-KR.user.xml │ │ ├── nb-NO.user.xml │ │ ├── nl-NL.user.xml │ │ ├── pl-PL.user.xml │ │ ├── pt-BR.user.xml │ │ ├── ru-RU.user.xml │ │ ├── sv-SE.user.xml │ │ └── zh-CN.user.xml │ ├── grid.editors.config.js │ ├── imageprocessor │ │ ├── cache.config │ │ ├── processing.config │ │ └── security.config │ ├── logviewer.searches.config.js │ ├── serilog.config │ ├── serilog.user.config │ ├── splashes │ │ └── noNodes.aspx │ ├── tinyMceConfig.config │ └── umbracoSettings.config ├── css │ └── umbraco-starterkit-style.css ├── packages.config └── scripts │ └── umbraco-starterkit-app.js ├── Our.Umbraco.HealthChecks.sln └── Our.Umbraco.HealthChecks ├── App_Plugins └── Our.Umbraco.HealthChecks │ └── Lang │ ├── en-GB.xml │ └── en-US.xml ├── Checks ├── Azure │ ├── AzureFcnModeCheck.cs │ └── AzureTempStorageCheck.cs ├── Config │ ├── PostProcessorCheck.cs │ └── UmbracoPathCheck.cs └── Security │ ├── AdminUserCheck.cs │ └── ClientDependencyVersionCheck.cs ├── Our.Umbraco.HealthChecks.csproj ├── Our.Umbraco.HealthChecks.csproj.user ├── Our.Umbraco.HealthChecks.nuspec ├── Properties └── AssemblyInfo.cs ├── app.config └── packages.config /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/appveyor.yml -------------------------------------------------------------------------------- /images/health-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/images/health-check.png -------------------------------------------------------------------------------- /images/loremipsumcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/images/loremipsumcheck.png -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/App_Data/Umbraco.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/App_Data/Umbraco.sdf -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/App_Data/packages/createdPackages.config: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/App_Data/packages/installedPackages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/App_Data/packages/installedPackages.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/App_Plugins/ModelsBuilder/modelsbuilder.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/App_Plugins/ModelsBuilder/modelsbuilder.controller.js -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/App_Plugins/ModelsBuilder/modelsbuilder.resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/App_Plugins/ModelsBuilder/modelsbuilder.resource.js -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/App_Plugins/ModelsBuilder/package.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/App_Plugins/ModelsBuilder/package.manifest -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Global.asax -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/17552d12081d4d01b68132c495d6576f/00000006000000000000000000000000/7373036290_5e8420bf36_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/17552d12081d4d01b68132c495d6576f/00000006000000000000000000000000/7373036290_5e8420bf36_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/1bc5280b8658402789d958e2576e469b/00000006000000000000000000000000/14272036539_469ca21d5c_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/1bc5280b8658402789d958e2576e469b/00000006000000000000000000000000/14272036539_469ca21d5c_h.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/1d0b713a022a49c8b842a2463c83a553/00000006000000000000000000000000/7373036208_30257976a0_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/1d0b713a022a49c8b842a2463c83a553/00000006000000000000000000000000/7373036208_30257976a0_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/20e3a8ffad1b4fe9b48cb8461c46d2d0/00000006000000000000000000000000/7371127652_e01b6ab56f_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/20e3a8ffad1b4fe9b48cb8461c46d2d0/00000006000000000000000000000000/7371127652_e01b6ab56f_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/34371d0892c84015912ebaacd002c5d0/00000006000000000000000000000000/18530280048_459b8b61b2_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/34371d0892c84015912ebaacd002c5d0/00000006000000000000000000000000/18530280048_459b8b61b2_h.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/46a025d6095a4b148b961b59ca4e951c/00000006000000000000000000000000/7377957524_347859faac_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/46a025d6095a4b148b961b59ca4e951c/00000006000000000000000000000000/7377957524_347859faac_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/55514845b8bd487cb3709724852fd6bb/00000006000000000000000000000000/4730684907_8a7f8759cb_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/55514845b8bd487cb3709724852fd6bb/00000006000000000000000000000000/4730684907_8a7f8759cb_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/662af6ca411a4c93a6c722c4845698e7/00000006000000000000000000000000/16403439029_f500be349b_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/662af6ca411a4c93a6c722c4845698e7/00000006000000000000000000000000/16403439029_f500be349b_o.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/Web.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/b76ddb4ee603401499066087984740ec/00000006000000000000000000000000/5852022091_87c5d045ab_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/b76ddb4ee603401499066087984740ec/00000006000000000000000000000000/5852022091_87c5d045ab_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/c0969cab13ab4de9819a848619ac2b5d/00000006000000000000000000000000/18095416144_44a566a5f4_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/c0969cab13ab4de9819a848619ac2b5d/00000006000000000000000000000000/18095416144_44a566a5f4_h.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/c09ec77f08e3466aac58c979befd3cd6/00000006000000000000000000000000/5852022211_9028df67c0_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/c09ec77f08e3466aac58c979befd3cd6/00000006000000000000000000000000/5852022211_9028df67c0_b.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/cf1ab8dcad0f4a8e974b87b84777b0d6/00000006000000000000000000000000/18720470241_ff77768544_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/cf1ab8dcad0f4a8e974b87b84777b0d6/00000006000000000000000000000000/18720470241_ff77768544_h.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/eee91c05b2e84031a056dcd7f28eff89/00000006000000000000000000000000/18531852339_981b067419_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/eee91c05b2e84031a056dcd7f28eff89/00000006000000000000000000000000/18531852339_981b067419_h.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Media/fa763e0d0ceb408c8720365d57e06e32/00000006000000000000000000000000/18531854019_351c579559_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Media/fa763e0d0ceb408c8720365d57e06e32/00000006000000000000000000000000/18531854019_351c579559_h.jpg -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Our.Umbraco.HealthChecks.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Our.Umbraco.HealthChecks.Web.csproj -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Blog.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Blog.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/BlogPost.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/BlogPost.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Home.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Home.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/MacroPartials/FeaturedProducts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/MacroPartials/FeaturedProducts.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/MacroPartials/LatestBlogposts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/MacroPartials/LatestBlogposts.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Master.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Master.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/CategoryLinks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/CategoryLinks.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Bootstrap3-Fluid.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Bootstrap3-Fluid.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Bootstrap3.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Bootstrap3.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Base.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Base.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Embed.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Embed.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Macro.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Macro.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Media.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Media.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Rte.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Rte.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Textstring.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Grid/Editors/Textstring.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Navigation/SubNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Navigation/SubNavigation.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/Navigation/TopNavigation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/Navigation/TopNavigation.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Partials/SectionHeader.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Partials/SectionHeader.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Person.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Person.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Product.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Product.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Products.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Products.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/Web.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/contact.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/contentPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/contentPage.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Views/people.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Views/people.cshtml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Web.Release.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/Web.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/BackOfficeTours/getting-started.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/BackOfficeTours/getting-started.json -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/ClientDependency.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/ClientDependency.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/HealthChecks.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/HealthChecks.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/cs-CZ.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/cs-CZ.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/da-DK.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/da-DK.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/de-DE.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/de-DE.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/en-GB.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/en-GB.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/en-US.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/en-US.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/es-ES.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/es-ES.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/fr-FR.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/fr-FR.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/he-IL.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/he-IL.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/it-IT.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/it-IT.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/ja-JP.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/ja-JP.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/ko-KR.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/ko-KR.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/nb-NO.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/nb-NO.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/nl-NL.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/nl-NL.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/pl-PL.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/pl-PL.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/pt-BR.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/pt-BR.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/ru-RU.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/ru-RU.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/sv-SE.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/sv-SE.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/Lang/zh-CN.user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/Lang/zh-CN.user.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/grid.editors.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/grid.editors.config.js -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/imageprocessor/cache.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/imageprocessor/cache.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/imageprocessor/processing.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/imageprocessor/processing.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/imageprocessor/security.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/imageprocessor/security.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/logviewer.searches.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/logviewer.searches.config.js -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/serilog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/serilog.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/serilog.user.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/serilog.user.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/splashes/noNodes.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/splashes/noNodes.aspx -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/tinyMceConfig.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/tinyMceConfig.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/config/umbracoSettings.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/config/umbracoSettings.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/css/umbraco-starterkit-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/css/umbraco-starterkit-style.css -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/packages.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.Web/scripts/umbraco-starterkit-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.Web/scripts/umbraco-starterkit-app.js -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks.sln -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/App_Plugins/Our.Umbraco.HealthChecks/Lang/en-GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/App_Plugins/Our.Umbraco.HealthChecks/Lang/en-GB.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/App_Plugins/Our.Umbraco.HealthChecks/Lang/en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/App_Plugins/Our.Umbraco.HealthChecks/Lang/en-US.xml -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Checks/Azure/AzureFcnModeCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Checks/Azure/AzureFcnModeCheck.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Checks/Azure/AzureTempStorageCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Checks/Azure/AzureTempStorageCheck.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Checks/Config/PostProcessorCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Checks/Config/PostProcessorCheck.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Checks/Config/UmbracoPathCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Checks/Config/UmbracoPathCheck.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Checks/Security/AdminUserCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Checks/Security/AdminUserCheck.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Checks/Security/ClientDependencyVersionCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Checks/Security/ClientDependencyVersionCheck.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Our.Umbraco.HealthChecks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Our.Umbraco.HealthChecks.csproj -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Our.Umbraco.HealthChecks.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Our.Umbraco.HealthChecks.csproj.user -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Our.Umbraco.HealthChecks.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Our.Umbraco.HealthChecks.nuspec -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/app.config -------------------------------------------------------------------------------- /src/Our.Umbraco.HealthChecks/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prjseal/Our.Umbraco.HealthChecks/HEAD/src/Our.Umbraco.HealthChecks/packages.config --------------------------------------------------------------------------------