fcatae / Arda

Arda is an open source tool designed to manage team workloads.
42 stars 18 forks source link

Services return JSON in Pascal Case instead of Camel Case #82

Open fcatae opened 7 years ago

fcatae commented 7 years ago

Client relies on JSON using PascalCase instead of camelCase:

            services.AddMvc()
                .AddJsonOptions(opts =>
                {
                    opts.SerializerSettings.ContractResolver = new Newtonsoft.Json.Serialization.DefaultContractResolver();
                });

This does not follow the general guidelines for REST API.