Ejemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseCookiePolicy();

            app.UseAuthentication();

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });

            // Create custom roles
            var serviceProvider = app.ApplicationServices.GetRequiredService <IServiceProvider>().CreateScope();

            IdentityHelper.CreateRoles(serviceProvider.ServiceProvider, IdentityHelper.ProviderAccount, IdentityHelper.UserAccount)
            .Wait();
        }
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }
            app.UseHttpsRedirection();
            app.UseStaticFiles();

            app.UseRouting();

            app.UseAuthentication();
            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller=Home}/{action=Index}/{id?}");
                endpoints.MapRazorPages();
            });

            // Create roles here
            IServiceScope serviceProvider = app.ApplicationServices.GetRequiredService <IServiceProvider>().CreateScope();

            IdentityHelper.CreateRoles(serviceProvider.ServiceProvider, IdentityHelper.User, IdentityHelper.Admin).Wait();
        }
Ejemplo n.º 3
0
        public static void Seed <T>(T context)
            where T : Data.TenderSearchDb, new()
        {
#if DEBUG
            using (var identityHelper = new IdentityHelper <ApplicationUser, IdentityRole, T>())
            {
                var roles = Roles.ConvertAll(r => new IdentityRole(r));

                identityHelper.CreateRoles(roles);
            }
#endif
        }