This commit is contained in:
Livio Amstutz 2021-11-02 11:55:18 +01:00
parent c56d5e5f9e
commit 4442df1153

View file

@ -44,9 +44,7 @@ func Revoke(w http.ResponseWriter, r *http.Request, revoker Revoker) {
RevocationRequestError(w, r, err)
return
}
var i interface{}
httphelper.MarshalJSON(w, i)
return
httphelper.MarshalJSON(w, nil)
}
func ParseTokenRevocationRequest(r *http.Request, revoker Revoker) (token, tokenTypeHint, clientID string, err error) {