Commit fe52ce9e authored by Stephane LOUIS DIT PICARD's avatar Stephane LOUIS DIT PICARD
Browse files

fix: getreloc always send an empty list as response (bad class provided to binder provider)

parent 03701b54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ namespace ETSI.ARF.OpenAPI.WorldStorage
            services
                .AddControllers(options =>
                {
                    options.ModelBinderProviders.Insert(0, new FromJsonBinderProviderT<RelocObject>());
                    options.ModelBinderProviders.Insert(0, new FromJsonBinderProviderT<UuidAndMode>());
                    options.ModelBinderProviders.Insert(0, new FromJsonBinderProviderT<Capability>());
                });
        }