Skip to content

Commit

Permalink
Merge pull request #27 from Raflos10/email-redirect
Browse files Browse the repository at this point in the history
changed email redirect query parameter name

version bump
  • Loading branch information
Proziam committed Mar 3, 2025
2 parents 26a0ed0 + 874b8e6 commit 09fcdb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "supabase-auth"
authors = ["Eric Biggs"]
description = "Supabase Auth implementation following the official client libraries."
readme = "README.md"
version = "0.10.11"
version = "0.10.12"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["supabase", "supabase-auth", "authentication", "auth"]
Expand Down
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ impl AuthClient {
let response = self
.client
.post(format!("{}{}/signup", self.project_url, AUTH_V1))
.query(&[("email_redirect_to", redirect_to.as_deref())])
.query(&[("redirect_to", redirect_to.as_deref())])
.headers(headers)
.body(body)
.send()
Expand Down

0 comments on commit 09fcdb3

Please sign in to comment.