mirror of https://github.com/portainer/portainer
28 lines
623 B
Go
28 lines
623 B
Go
package roles
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/http/security"
|
|
)
|
|
|
|
// Handler is the HTTP handler used to handle role operations.
|
|
type Handler struct {
|
|
*mux.Router
|
|
RoleService portainer.RoleService
|
|
}
|
|
|
|
// NewHandler creates a handler to manage role operations.
|
|
func NewHandler(bouncer *security.RequestBouncer) *Handler {
|
|
h := &Handler{
|
|
Router: mux.NewRouter(),
|
|
}
|
|
h.Handle("/roles",
|
|
bouncer.AdminAccess(httperror.LoggerHandler(h.roleList))).Methods(http.MethodGet)
|
|
|
|
return h
|
|
}
|