Exemplo n.º 1
0
        public void ShouldAllowForACustomSeed()
        {
            Action action = () => { ShortId.SetSeed(678309202); };

            action.Should()
            .NotThrow <Exception>();
        }
Exemplo n.º 2
0
        public void ShouldAllowForACustomSeed()
        {
            var action = () => { ShortId.SetSeed(678309202); };

            action.Should().NotThrow();
        }
Exemplo n.º 3
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            app.UseResponseCompression();

            //app.UseCors(builder =>
            //            builder
            //            .WithOrigins("https://localhost:44384", "http://localhost:4200").AllowAnyOrigin());
            app.UseCors(builder =>
            {
                builder.AllowAnyOrigin();
                builder.AllowAnyMethod();
                builder.AllowAnyMethod();
            });

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Error");
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSpaStaticFiles();

            app.UseWebSockets();
            app.UseSignalR(routes =>
            {
                routes.MapHub <NotificationHub>("/notification-hub");
                routes.MapHub <KanbanHub>("/kanban-hub");
                routes.MapHub <ChatHub>("/chat-hub");
                routes.MapHub <ReadOnlyProjectHub>("/project-read-only");
            });

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

            app.UseAuthentication();

            app.UseSpa(spa =>
            {
                // To learn more about options for serving an Angular SPA from ASP.NET Core,
                // see https://go.microsoft.com/fwlink/?linkid=864501

                spa.Options.SourcePath = "ClientApp";
                if (env.IsDevelopment())
                {
                    spa.UseAngularCliServer(npmScript: "start");
                }
            });

            // Configure id generator
            ShortId.SetCharacters("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890");
            ShortId.SetSeed(1939048828);
        }