https://github.com/grafana/grafana
Revision 121631daaefec1b3409685e6f2d876eedcf7a636 authored by Jo on 14 November 2022, 12:11:26 UTC, committed by GitHub on 14 November 2022, 12:11:26 UTC
* fix: email and username trimming and invitation validation

* Trim leading and trailing whitespaces from email and username on signup

* Check whether the provided email address is the same as where the invitation sent

* Align tests

Co-authored-by: Mihaly Gyongyosi <mgyongyosi@users.noreply.github.com>
1 parent 1fddd9a
Raw File
Tip revision: 121631daaefec1b3409685e6f2d876eedcf7a636 authored by Jo on 14 November 2022, 12:11:26 UTC
Fix: Email and username trimming and invitation validation (#58442)
Tip revision: 121631d
build.go
// +build ignore

package main

import (
	"log"
	"os"

	"github.com/grafana/grafana/pkg/build"
)

func main() {
	log.SetOutput(os.Stdout)
	log.SetFlags(0)
	os.Exit(build.RunCmd())
}
back to top