From 808a27c793d77c1faaf77b0dfd200671b3addab0 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Sun, 2 Jun 2024 19:50:46 +0530 Subject: [PATCH] feat: enable controller --- config/routes.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/routes.rb b/config/routes.rb index 96aa36ec6..dd7f0e684 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -209,6 +209,10 @@ Rails.application.routes.draw do resource :authorization, only: [:create] end + namespace :google do + resource :authorization, only: [:create] + end + resources :webhooks, only: [:index, :create, :update, :destroy] namespace :integrations do resources :apps, only: [:index, :show]