summaryrefslogtreecommitdiff
path: root/pkg/api/server/register_auth.go
blob: 7e51c2b63e44a5e3b9f6af22c8d80c461420d246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package server

import (
	"github.com/containers/libpod/pkg/api/handlers"
	"github.com/gorilla/mux"
)

func (s *APIServer) registerAuthHandlers(r *mux.Router) error {
	r.Handle(VersionedPath("/auth"), s.APIHandler(handlers.UnsupportedHandler))
	// Added non version path to URI to support docker non versioned paths
	r.Handle("/auth", s.APIHandler(handlers.UnsupportedHandler))
	return nil
}