Compare commits

...

2 Commits

Author SHA1 Message Date
vilmibm 5876b0ebe3 Merge pull request 'fix spaces in passwords' (#1) from equa/town:trunk into trunk
Reviewed-on: #1
2023-03-14 21:57:09 +00:00
equa d5e6960573 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 them
2023-03-14 13:53:26 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -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")