Skip to content

Commit

Permalink
Fix doc code (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
devsuperman authored Jun 9, 2024
1 parent 28bc013 commit ac4db46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/03.authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ You can inherit from the base `ServerSideAuthenticationService` class in order t
```csharp
// Example Authentication Service
public class SampleServerSideAuthenticationService
: ServerSideAuthenticationService<SignInPayload, SignUpPayload>()
: ServerSideAuthenticationService<SignInPayload, SignUpPayload>
{
protected override Task<AuthenticationResult> GetSignInResultAsync(SignInPayload signInPayload)
{
Expand Down Expand Up @@ -84,9 +84,9 @@ public class SampleServerSideAuthenticationService
{
return new JwtPair
{
AccessToken = "my-access-token"
AccessToken = "my-access-token",
RefreshToken = "my-refresh-token"
}
};
}
}
```
Expand Down

0 comments on commit ac4db46

Please sign in to comment.