mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
18 lines
487 B
Go
18 lines
487 B
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/service"
|
|
_ "github.com/zitadel/zitadel/internal/statik"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func ServiceHandler() grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
namer := info.Server.(interface{ AppName() string })
|
|
ctx = service.WithService(ctx, namer.AppName())
|
|
return handler(ctx, req)
|
|
}
|
|
}
|