Skip to content

Commit c394e1f

Browse files
committed
Reverted showing RelativeLinks in GettingStarted
1 parent df66548 commit c394e1f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/Examples/GettingStarted/Startup.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,8 @@ public void ConfigureServices(IServiceCollection services)
1515
services.AddDbContext<SampleDbContext>(
1616
options => options.UseSqlite("Data Source=sample.db"));
1717

18-
services.AddJsonApi<SampleDbContext>(options =>
19-
{
20-
options.Namespace = "api";
21-
//options.RelativeLinks = true;
22-
});
18+
services.AddJsonApi<SampleDbContext>(
19+
options => options.Namespace = "api");
2320
}
2421

2522
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

0 commit comments

Comments
 (0)