aboutsummaryrefslogblamecommitdiffstats
path: root/api/auth/middleware.go
blob: d72354fe71c8c13bff1369cf44e987d01d70f61b (plain) (tree)
1
2
3
4
5
6




                  
                                           









                                                                                      
package auth

import (
	"net/http"

	"github.com/git-bug/git-bug/entity"
)

func Middleware(fixedUserId entity.Id) func(http.Handler) http.Handler {
	return func(next http.Handler) http.Handler {
		return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
			ctx := CtxWithUser(r.Context(), fixedUserId)
			next.ServeHTTP(w, r.WithContext(ctx))
		})
	}
}