feat: Add Instagram Channel (#2955)

This commit is contained in:
Tejaswini Chile 2021-10-05 14:35:32 +05:30 committed by GitHub
parent 30244f79a6
commit 40d0b2faf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 825 additions and 50 deletions

View file

@ -251,6 +251,8 @@ Rails.application.routes.draw do
post 'webhooks/twitter', to: 'api/v1/webhooks#twitter_events'
post 'webhooks/line/:line_channel_id', to: 'webhooks/line#process_payload'
post 'webhooks/telegram/:bot_token', to: 'webhooks/telegram#process_payload'
get 'instagram_callbacks/event', to: 'api/v1/instagram_callbacks#verify'
post 'instagram_callbacks/event', to: 'api/v1/instagram_callbacks#events'
namespace :twitter do
resource :callback, only: [:show]