added endpoint to receive payment data and update it

This commit is contained in:
olegphenomenon 2022-01-14 14:52:35 +02:00
parent df48b2137b
commit 005a888f50
2 changed files with 56 additions and 0 deletions

View file

@ -11,6 +11,10 @@ Rails.application.routes.draw do
mount PgHero::Engine, at: "pghero"
end
namespace :eis_billing do
put '/payment_status', to: 'payment_status#update', as: 'payment_status'
end
namespace :epp do
constraints(EppConstraint.new(:session)) do
get 'session/hello', to: 'sessions#hello', as: 'hello'