Add admin API for managing canonical e-mail blocks (#19067)

This commit is contained in:
Eugen Rochko
2022-08-28 03:31:54 +02:00
committed by GitHub
parent b399d79545
commit c556c3a0d1
11 changed files with 177 additions and 36 deletions

View File

@ -602,6 +602,12 @@ Rails.application.routes.draw do
post :measures, to: 'measures#create'
post :dimensions, to: 'dimensions#create'
post :retention, to: 'retention#create'
resources :canonical_email_blocks, only: [:index, :create, :show, :destroy] do
collection do
post :test
end
end
end
end