├── .gitignore ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── Finished Sample └── ImageGallery │ ├── ImageGallery.sln │ ├── locksinparis.jpg │ └── src │ ├── ImageGallery.API │ ├── Authorization │ │ ├── MustOwnImageHandler.cs │ │ └── MustOwnImageRequirement.cs │ ├── Controllers │ │ └── ImagesController.cs │ ├── Entities │ │ ├── GalleryContext.cs │ │ ├── GalleryContextExtensions.cs │ │ └── Image.cs │ ├── Helpers │ │ └── UnprocessableEntityResult.cs │ ├── ImageGallery.API.csproj │ ├── Migrations │ │ ├── GalleryContextModelSnapshot.cs │ │ ├── InitialMigration.Designer.cs │ │ └── InitialMigration.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── GalleryRepository.cs │ │ └── IGalleryRepository.cs │ ├── Startup.cs │ ├── appsettings.json │ ├── web.config │ └── wwwroot │ │ └── Images │ │ ├── 3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg │ │ ├── 43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg │ │ ├── 46194927-ccda-432f-bc95-4820318c08c7.jpg │ │ ├── 4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg │ │ ├── 54399b9b-bbca-470f-a64a-eb528e7b3c00.jpg │ │ ├── 5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg │ │ ├── 6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg │ │ ├── 7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg │ │ ├── 8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg │ │ ├── 94878996-e040-44ef-a668-0bf17d966062.jpg │ │ ├── b2894002-0b7c-4f05-896a-856283012c87.jpg │ │ ├── bd29eefa-d330-4c7c-94c8-af52be385e78.jpg │ │ ├── c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg │ │ ├── cc412f08-2a7b-4225-b659-07fdb168302d.jpg │ │ ├── cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg │ │ ├── dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg │ │ ├── e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg │ │ └── fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg │ ├── ImageGallery.Client │ ├── .bowerrc │ ├── Controllers │ │ ├── AuthorizationController.cs │ │ └── GalleryController.cs │ ├── ImageGallery.Client.csproj │ ├── ImageGallery.Client.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── IImageGalleryHttpClient.cs │ │ └── ImageGalleryHttpClient.cs │ ├── Startup.cs │ ├── ViewModels │ │ ├── AddImageViewModel.cs │ │ ├── EditImageViewModel.cs │ │ ├── GalleryIndexViewModel.cs │ │ └── OrderFrameViewModel.cs │ ├── Views │ │ ├── Authorization │ │ │ └── AccessDenied.cshtml │ │ ├── Gallery │ │ │ ├── AddImage.cshtml │ │ │ ├── EditImage.cshtml │ │ │ ├── Index.cshtml │ │ │ └── OrderFrame.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── web.config │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── ImageGallery.Model │ ├── Image.cs │ ├── ImageForCreation.cs │ ├── ImageForUpdate.cs │ └── ImageGallery.Model.csproj │ └── Marvin.IDP │ ├── Config.cs │ ├── Marvin.IDP.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Quickstart │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── ExternalController.cs │ │ ├── ExternalProvider.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ ├── LogoutViewModel.cs │ │ └── RedirectViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Diagnostics │ │ ├── DiagnosticsController.cs │ │ └── DiagnosticsViewModel.cs │ ├── Extensions.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs │ ├── Startup.cs │ ├── Views │ ├── Account │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ ├── Index.cshtml │ │ └── _ScopeListItem.cshtml │ ├── Diagnostics │ │ └── Index.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Redirect.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── tempkey.rsa │ └── wwwroot │ ├── css │ ├── site.css │ ├── site.less │ └── site.min.css │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── js │ ├── signin-redirect.js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── jquery │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── LICENSE ├── README.md └── Starter Files └── ImageGallery ├── .vs └── config │ └── applicationhost.config ├── ImageGallery.sln └── src ├── ImageGallery.API ├── Controllers │ └── ImagesController.cs ├── Entities │ ├── GalleryContext.cs │ ├── GalleryContextExtensions.cs │ └── Image.cs ├── Helpers │ └── UnprocessableEntityResult.cs ├── ImageGallery.API.csproj ├── Migrations │ ├── GalleryContextModelSnapshot.cs │ ├── InitialMigration.Designer.cs │ └── InitialMigration.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── GalleryRepository.cs │ └── IGalleryRepository.cs ├── Startup.cs ├── appsettings.json ├── web.config └── wwwroot │ └── Images │ ├── 3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg │ ├── 43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg │ ├── 46194927-ccda-432f-bc95-4820318c08c7.jpg │ ├── 4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg │ ├── 5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg │ ├── 6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg │ ├── 7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg │ ├── 8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg │ ├── 94878996-e040-44ef-a668-0bf17d966062.jpg │ ├── b2894002-0b7c-4f05-896a-856283012c87.jpg │ ├── bd29eefa-d330-4c7c-94c8-af52be385e78.jpg │ ├── c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg │ ├── cc412f08-2a7b-4225-b659-07fdb168302d.jpg │ ├── cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg │ ├── dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg │ ├── e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg │ └── fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg ├── ImageGallery.Client ├── .bowerrc ├── Controllers │ └── GalleryController.cs ├── ImageGallery.Client.csproj ├── ImageGallery.Client.csproj.user ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── IImageGalleryHttpClient.cs │ └── ImageGalleryHttpClient.cs ├── Startup.cs ├── ViewModels │ ├── AddImageViewModel.cs │ ├── EditImageViewModel.cs │ └── GalleryIndexViewModel.cs ├── Views │ ├── Gallery │ │ ├── AddImage.cshtml │ │ ├── EditImage.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── bower.json ├── bundleconfig.json ├── web.config └── wwwroot │ ├── _references.js │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── ImageGallery.Model ├── Image.cs ├── ImageForCreation.cs ├── ImageForUpdate.cs └── ImageGallery.Model.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/ImageGallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/ImageGallery.sln -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/locksinparis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/locksinparis.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Authorization/MustOwnImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Authorization/MustOwnImageHandler.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Authorization/MustOwnImageRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Authorization/MustOwnImageRequirement.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Entities/GalleryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Entities/GalleryContext.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Entities/GalleryContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Entities/GalleryContextExtensions.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Entities/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Entities/Image.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Helpers/UnprocessableEntityResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Helpers/UnprocessableEntityResult.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/ImageGallery.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/ImageGallery.API.csproj -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Migrations/GalleryContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Migrations/GalleryContextModelSnapshot.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Program.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Services/GalleryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Services/GalleryRepository.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Services/IGalleryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Services/IGalleryRepository.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/Startup.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/appsettings.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/web.config -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/46194927-ccda-432f-bc95-4820318c08c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/46194927-ccda-432f-bc95-4820318c08c7.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/54399b9b-bbca-470f-a64a-eb528e7b3c00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/54399b9b-bbca-470f-a64a-eb528e7b3c00.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/94878996-e040-44ef-a668-0bf17d966062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/94878996-e040-44ef-a668-0bf17d966062.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/b2894002-0b7c-4f05-896a-856283012c87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/b2894002-0b7c-4f05-896a-856283012c87.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/bd29eefa-d330-4c7c-94c8-af52be385e78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/bd29eefa-d330-4c7c-94c8-af52be385e78.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/cc412f08-2a7b-4225-b659-07fdb168302d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/cc412f08-2a7b-4225-b659-07fdb168302d.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.API/wwwroot/Images/fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Controllers/AuthorizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Controllers/AuthorizationController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Controllers/GalleryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Controllers/GalleryController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj.user -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Program.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Services/IImageGalleryHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Services/IImageGalleryHttpClient.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Services/ImageGalleryHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Services/ImageGalleryHttpClient.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Startup.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/AddImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/AddImageViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/EditImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/EditImageViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/GalleryIndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/GalleryIndexViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/OrderFrameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/ViewModels/OrderFrameViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Authorization/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Authorization/AccessDenied.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/AddImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/AddImage.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/EditImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/EditImage.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/Index.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/OrderFrame.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Gallery/OrderFrame.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/appsettings.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/bower.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/bundleconfig.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/web.config -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/_references.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Model/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Model/Image.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Model/ImageForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Model/ImageForCreation.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Model/ImageForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Model/ImageForUpdate.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/ImageGallery.Model/ImageGallery.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/ImageGallery.Model/ImageGallery.Model.csproj -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Config.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Marvin.IDP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Marvin.IDP.csproj -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Program.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/ExternalController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Extensions.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Startup.cs -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/tempkey.rsa -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/css/site.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/css/site.less -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/icon.jpg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/icon.png -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Finished Sample/ImageGallery/src/Marvin.IDP/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/README.md -------------------------------------------------------------------------------- /Starter Files/ImageGallery/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Starter Files/ImageGallery/ImageGallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/ImageGallery.sln -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Entities/GalleryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Entities/GalleryContext.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Entities/GalleryContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Entities/GalleryContextExtensions.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Entities/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Entities/Image.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Helpers/UnprocessableEntityResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Helpers/UnprocessableEntityResult.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/ImageGallery.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/ImageGallery.API.csproj -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Migrations/GalleryContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Migrations/GalleryContextModelSnapshot.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Migrations/InitialMigration.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Program.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Services/GalleryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Services/GalleryRepository.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Services/IGalleryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Services/IGalleryRepository.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/Startup.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/appsettings.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/web.config -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/3fbe2aea-2257-44f2-b3b1-3d8bacade89c.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/43de8b65-8b19-4b87-ae3c-df97e18bd461.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/46194927-ccda-432f-bc95-4820318c08c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/46194927-ccda-432f-bc95-4820318c08c7.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/4cdd494c-e6e1-4af1-9e54-24a8e80ea2b4.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/5c20ca95-bb00-4ef1-8b85-c4b11e66eb54.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/6b33c074-65cf-4f2b-913a-1b2d4deb7050.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/7e80a4c8-0a8a-4593-a16f-2e257294a1f9.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/8d351bbb-f760-4b56-9d4e-e8d61619bf70.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/94878996-e040-44ef-a668-0bf17d966062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/94878996-e040-44ef-a668-0bf17d966062.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/b2894002-0b7c-4f05-896a-856283012c87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/b2894002-0b7c-4f05-896a-856283012c87.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/bd29eefa-d330-4c7c-94c8-af52be385e78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/bd29eefa-d330-4c7c-94c8-af52be385e78.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/c3a8b2c6-511e-43a9-b335-158d8cea0293.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/cc412f08-2a7b-4225-b659-07fdb168302d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/cc412f08-2a7b-4225-b659-07fdb168302d.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/cd139111-c82e-4bc8-9f7d-43a1059bfe73.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/dc3f39bf-d1da-465d-9ea4-935902c2e3d2.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/e0e32179-109c-4a8a-bf91-3d65ff83ca29.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.API/wwwroot/Images/fdfe7329-e05c-41fb-a7c7-4f3226d28c49.jpg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Controllers/GalleryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Controllers/GalleryController.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/ImageGallery.Client.csproj.user -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Program.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Services/IImageGalleryHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Services/IImageGalleryHttpClient.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Services/ImageGalleryHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Services/ImageGalleryHttpClient.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Startup.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/ViewModels/AddImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/ViewModels/AddImageViewModel.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/ViewModels/EditImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/ViewModels/EditImageViewModel.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/ViewModels/GalleryIndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/ViewModels/GalleryIndexViewModel.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/Gallery/AddImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/Gallery/AddImage.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/Gallery/EditImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/Gallery/EditImage.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/Gallery/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/Gallery/Index.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/appsettings.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/bower.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/bundleconfig.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/web.config -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/_references.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.css -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Client/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Model/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Model/Image.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Model/ImageForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Model/ImageForCreation.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Model/ImageForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Model/ImageForUpdate.cs -------------------------------------------------------------------------------- /Starter Files/ImageGallery/src/ImageGallery.Model/ImageGallery.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/SecuringAspNetCore2WithOAuth2AndOIDC/HEAD/Starter Files/ImageGallery/src/ImageGallery.Model/ImageGallery.Model.csproj --------------------------------------------------------------------------------