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 c3c5748 commit adab2ddCopy full SHA for adab2dd
docs/usage/extensibility/services.md
@@ -34,7 +34,7 @@ public class TodoItemService : JsonApiResourceService<TodoItem>
34
public override async Task<TodoItem> CreateAsync(TodoItem resource, CancellationToken cancellationToken)
35
{
36
// Call the base implementation
37
- var newResource = await base.CreateAsync(resource, cancellationToke);
+ var newResource = await base.CreateAsync(resource, cancellationToken);
38
39
// Custom code
40
_notificationService.Notify($"Resource created: {newResource.StringId}");
0 commit comments