forked from tildetown/town
fix spaces in passwords
sometimes they showed up in the beginning/ends of passwords. there's no actual reason to have them otherwise so i'm just removing themtrunk
parent
02c5079e31
commit
d5e6960573
|
@ -17,7 +17,7 @@ import (
|
|||
email "git.tilde.town/tildetown/town/email"
|
||||
)
|
||||
|
||||
const pwLetters = "!@#$%^&*() []{}:;,.<>/?abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890"
|
||||
const pwLetters = "!@#$%^&*()[]{}:;,.<>/?abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890"
|
||||
|
||||
func ProcessGitea(rp string) error {
|
||||
apiToken := os.Getenv("GITEA_TOKEN")
|
||||
|
|
Loading…
Reference in New Issue