feature: verify tokens

This commit is contained in:
2024-11-17 22:28:29 +05:30
parent 26a00c9f7c
commit 9d40c9d7ec
57 changed files with 4188 additions and 276 deletions

7
config/urls.go Normal file
View File

@@ -0,0 +1,7 @@
package config
import "fmt"
func VerifyEmailURL(token string) string {
return fmt.Sprintf("%s/account/verify-email#%s", Read().WebURL, token)
}