Handles PUT or POST to /_user/*
()
| 1907 | |
| 1908 | // Handles PUT or POST to /_user/* |
| 1909 | func (h *handler) putUser() error { |
| 1910 | username := mux.Vars(h.rq)["name"] |
| 1911 | return h.updatePrincipal(username, true) |
| 1912 | } |
| 1913 | |
| 1914 | // Handles PUT or POST to /_role/* |
| 1915 | func (h *handler) putRole() error { |
nothing calls this directly
no test coverage detected