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 340ee44 commit 8462e75Copy full SHA for 8462e75
README.md
@@ -326,6 +326,10 @@ Resources can be sorted by an attribute:
326
327
### Meta
328
329
+Meta objects can be assigned in two ways:
330
+ - Resource meta
331
+ - Request Meta
332
+
333
Resource meta can be defined by implementing `IHasMeta` on the model class:
334
335
```csharp
@@ -343,6 +347,9 @@ public class Person : Identifiable<int>, IHasMeta
343
347
}
344
348
```
345
349
350
+Request Meta can be added by injecting a service that implements `IRequestMeta`.
351
+In the event of a key collision, the Request Meta will take precendence.
352
346
353
### Client Generated Ids
354
355
By default, the server will respond with a `403 Forbidden` HTTP Status Code if a `POST` request is
0 commit comments