From c46b689405d61950a994e7c07f23494e145964ae Mon Sep 17 00:00:00 2001 From: Thorsten Eckel Date: Tue, 17 Nov 2020 15:04:47 +0100 Subject: [PATCH] Fixes #3287 - Can't delete Applications (OAuth Authentication). --- config/routes/applications.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes/applications.rb b/config/routes/applications.rb index 752e170ea..45e35f4ca 100644 --- a/config/routes/applications.rb +++ b/config/routes/applications.rb @@ -5,6 +5,7 @@ Zammad::Application.routes.draw do match api_path + '/applications/:id', to: 'applications#show', via: :get match api_path + '/applications', to: 'applications#create', via: :post match api_path + '/applications/:id', to: 'applications#update', via: :put + match api_path + '/applications/:id', to: 'applications#destroy', via: :delete match api_path + '/applications/token', to: 'applications#token', via: :post # oauth2 provider routes