├── .IdentityServer4.MultiTenant.sln.swp ├── .gitignore ├── IdentityServer4.MultiTenant.sln ├── global.json ├── readme.md └── src ├── IdentityServer4.MultiTenant ├── Controllers │ └── AccountController.cs ├── IdentityServer4.MultiTenant.xproj ├── InMemory │ └── Users.cs ├── MultiTenancy │ ├── CollinsonTenant.cs │ ├── CollinsonTenantResolver.cs │ └── IdentityConfig.cs ├── Program.cs ├── Project_Readme.html ├── Properties │ └── launchSettings.json ├── Startup.cs ├── ViewModels │ └── LoginViewModel.cs ├── Views │ ├── Account │ │ └── Login.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ └── _ViewImports.cshtml ├── appsettings.json ├── project.json └── web.config └── product1 ├── Controllers ├── AuthenticatedController.cs └── HomeController.cs ├── HashExtensions.cs ├── MultiTenancy ├── CollinsonTenant.cs ├── CollinsonTenantResolver.cs └── IdentityConfig.cs ├── Program.cs ├── Project_Readme.html ├── Properties └── launchSettings.json ├── Startup.cs ├── Views ├── Home │ └── Index.cshtml └── Shared │ └── _Layout.cshtml ├── product1.xproj ├── project.json └── web.config /.IdentityServer4.MultiTenant.sln.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/.IdentityServer4.MultiTenant.sln.swp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/.gitignore -------------------------------------------------------------------------------- /IdentityServer4.MultiTenant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/IdentityServer4.MultiTenant.sln -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/global.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/readme.md -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/IdentityServer4.MultiTenant.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/IdentityServer4.MultiTenant.xproj -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/InMemory/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/InMemory/Users.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/MultiTenancy/CollinsonTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/MultiTenancy/CollinsonTenant.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/MultiTenancy/CollinsonTenantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/MultiTenancy/CollinsonTenantResolver.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/MultiTenancy/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/MultiTenancy/IdentityConfig.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Program.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Project_Readme.html -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Startup.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/appsettings.json -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/project.json -------------------------------------------------------------------------------- /src/IdentityServer4.MultiTenant/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/IdentityServer4.MultiTenant/web.config -------------------------------------------------------------------------------- /src/product1/Controllers/AuthenticatedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Controllers/AuthenticatedController.cs -------------------------------------------------------------------------------- /src/product1/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/product1/HashExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/HashExtensions.cs -------------------------------------------------------------------------------- /src/product1/MultiTenancy/CollinsonTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/MultiTenancy/CollinsonTenant.cs -------------------------------------------------------------------------------- /src/product1/MultiTenancy/CollinsonTenantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/MultiTenancy/CollinsonTenantResolver.cs -------------------------------------------------------------------------------- /src/product1/MultiTenancy/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/MultiTenancy/IdentityConfig.cs -------------------------------------------------------------------------------- /src/product1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Program.cs -------------------------------------------------------------------------------- /src/product1/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Project_Readme.html -------------------------------------------------------------------------------- /src/product1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/product1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Startup.cs -------------------------------------------------------------------------------- /src/product1/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/product1/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/product1/product1.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/product1.xproj -------------------------------------------------------------------------------- /src/product1/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/project.json -------------------------------------------------------------------------------- /src/product1/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schatekar/IdentityServer4.MultiTenant/HEAD/src/product1/web.config --------------------------------------------------------------------------------