@@ -32,15 +32,15 @@ public class JsonApiOptions : IJsonApiOptions
32
32
public bool IncludeExceptionStackTraceInErrors { get ; set ; } = false ;
33
33
34
34
/// <summary>
35
- /// Whether or not resource hooks are enabled.
35
+ /// Whether or not resource hooks are enabled.
36
36
/// This is currently an experimental feature and defaults to <see langword="false"/>.
37
37
/// </summary>
38
38
public bool EnableResourceHooks { get ; set ; } = false ;
39
39
40
40
/// <summary>
41
41
/// Whether or not database values should be included by default
42
42
/// for resource hooks. Ignored if EnableResourceHooks is set false.
43
- ///
43
+ ///
44
44
/// Defaults to <see langword="false"/>.
45
45
/// </summary>
46
46
public bool LoadDatabaseValues { get ; set ; }
@@ -55,12 +55,12 @@ public class JsonApiOptions : IJsonApiOptions
55
55
56
56
/// <inheritdoc/>
57
57
public bool AllowQueryStringOverrideForSerializerNullValueHandling { get ; set ; }
58
-
58
+
59
59
/// <inheritdoc/>
60
60
public bool AllowQueryStringOverrideForSerializerDefaultValueHandling { get ; set ; }
61
61
62
62
/// <inheritdoc/>
63
- public AttrCapabilities DefaultAttrCapabilities { get ; } = AttrCapabilities . All ;
63
+ public AttrCapabilities DefaultAttrCapabilities { get ; set ; } = AttrCapabilities . All ;
64
64
65
65
/// <summary>
66
66
/// The default page size for all resources. The value zero means: no paging.
@@ -98,8 +98,8 @@ public class JsonApiOptions : IJsonApiOptions
98
98
99
99
/// <summary>
100
100
/// Whether or not clients can provide ids when creating resources.
101
- /// Defaults to false. When disabled the application will respond
102
- /// with a 403 Forbidden response if a client attempts to create a
101
+ /// Defaults to false. When disabled the application will respond
102
+ /// with a 403 Forbidden response if a client attempts to create a
103
103
/// resource with a defined id.
104
104
/// </summary>
105
105
/// <example>
0 commit comments