We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaabb1a commit 19a3822Copy full SHA for 19a3822
src/JsonApiDotNetCore/Extensions/ServiceProviderExtensions.cs
@@ -1,4 +1,5 @@
1
using System;
2
+using JsonApiDotNetCore.Builders;
3
using JsonApiDotNetCore.Configuration;
4
using JsonApiDotNetCore.Data;
5
using JsonApiDotNetCore.Formatters;
@@ -54,6 +55,8 @@ public static void AddJsonApiInternals<TContext>(this IServiceCollection service
54
55
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
56
57
services.AddScoped<JsonApiRouteHandler>();
58
+
59
+ services.AddScoped<IMetaBuilder, MetaBuilder>();
60
}
61
62
public static void SerializeAsJsonApi(this MvcOptions options, JsonApiOptions jsonApiOptions)
0 commit comments