mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
a1942ecdaa
* refactor: rename otp to totp * feat: add otp sms and email * implement tests
17 lines
371 B
Go
17 lines
371 B
Go
package authz
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
)
|
|
|
|
// UserIDInCTX checks if the userID
|
|
// equals the authenticated user in the context.
|
|
func UserIDInCTX(ctx context.Context, userID string) error {
|
|
if GetCtxData(ctx).UserID != userID {
|
|
return errors.ThrowPermissionDenied(nil, "AUTH-Bohd2", "Errors.User.UserIDWrong")
|
|
}
|
|
return nil
|
|
}
|