pg_engine/config/routes.rb in pg_rails-7.0.8.pre.alpha.99 vs pg_engine/config/routes.rb in pg_rails-7.0.8.pre.alpha.100
- old
+ new
@@ -1,12 +1,12 @@
include PgEngine::RouteHelpers
Rails.application.routes.draw do
get "pg_engine/health" => "pg_engine/health#show", as: :pg_engine_health_check
- get '404', to: 'pg_engine/base#page_not_found'
- get '500', to: 'pg_engine/base#internal_error'
- get 'internal_error_but_with_status200', to: 'pg_engine/base#internal_error_but_with_status200'
+ get '404', to: 'application#page_not_found'
+ get '500', to: 'application#internal_error'
+ get 'internal_error_but_with_status200', to: 'application#internal_error_but_with_status200'
namespace :public, path: '' do
pg_resource(:mensaje_contactos, only: [:new, :create], path: 'contacto')
post 'webhook/mailgun', to: 'webhooks#mailgun'
end