File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
JsonApiDotNetCore.Annotations/Controllers
JsonApiDotNetCore.SourceGenerators Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ public enum JsonApiEndpoints
33
33
/// Represents the endpoint to get a secondary resource or collection of secondary resources. Example:
34
34
/// <code><![CDATA[
35
35
/// GET /articles/1/author HTTP/1.1
36
+ /// ]]></code> Example: <code><![CDATA[
37
+ /// GET /articles/1/revisions HTTP/1.1
36
38
/// ]]></code>
37
39
/// </summary>
38
40
GetSecondary = 1 << 2 ,
@@ -48,7 +50,7 @@ public enum JsonApiEndpoints
48
50
GetRelationship = 1 << 3 ,
49
51
50
52
/// <summary>
51
- /// Represents the endpoint to creates a new resource with attributes, relationships or both. Example:
53
+ /// Represents the endpoint to create a new resource with attributes, relationships or both. Example:
52
54
/// <code><![CDATA[
53
55
/// POST /articles HTTP/1.1
54
56
/// ]]></code>
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ public enum JsonApiEndpointsCopy
27
27
/// Represents the endpoint to get a secondary resource or collection of secondary resources. Example:
28
28
/// <code><![CDATA[
29
29
/// GET /articles/1/author HTTP/1.1
30
+ /// ]]></code> Example: <code><![CDATA[
31
+ /// GET /articles/1/revisions HTTP/1.1
30
32
/// ]]></code>
31
33
/// </summary>
32
34
GetSecondary = 1 << 2 ,
@@ -42,7 +44,7 @@ public enum JsonApiEndpointsCopy
42
44
GetRelationship = 1 << 3 ,
43
45
44
46
/// <summary>
45
- /// Represents the endpoint to creates a new resource with attributes, relationships or both. Example:
47
+ /// Represents the endpoint to create a new resource with attributes, relationships or both. Example:
46
48
/// <code><![CDATA[
47
49
/// POST /articles HTTP/1.1
48
50
/// ]]></code>
You can’t perform that action at this time.
0 commit comments