mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-15 18:18:21 +00:00

* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
12 lines
289 B
Go
12 lines
289 B
Go
package handler
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"net/http"
|
|
)
|
|
|
|
func (l *Login) redirectToCallback(w http.ResponseWriter, r *http.Request, authReq *domain.AuthRequest) {
|
|
callback := l.oidcAuthCallbackURL + authReq.ID
|
|
http.Redirect(w, r, callback, http.StatusFound)
|
|
}
|