pg_rails 7.0.8.pre.alpha.99 → 7.0.8.pre.alpha.100
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/pg_engine/config/routes.rb +3 -3
- data/pg_rails/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0896ed88c290ad3d15d1b4edc18af987081ce34e1a0ae2cbf9e3620b4f217d04'
|
4
|
+
data.tar.gz: 9fa01a280e302e3f9f5c01edadf6cc5d526637e944b312162fe54c3518219794
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2304afeed57445774e783dd2e14be001b3b732564b7d212cd4fe79f5d26f45a3f770f8b7ca1789e6ce12656c16c228afba2b2c483ea20f53f1c552a2c82aff0e
|
7
|
+
data.tar.gz: 5212a262a94cf9a81d140cedde07d16e719d5731913c80106265c94c7b1abc2c5719c65face0257381c42252285fb7c3f96c60e4f79d0f9e4119e0d2a51eb2e0
|
data/pg_engine/config/routes.rb
CHANGED
@@ -3,9 +3,9 @@ include PgEngine::RouteHelpers
|
|
3
3
|
Rails.application.routes.draw do
|
4
4
|
get "pg_engine/health" => "pg_engine/health#show", as: :pg_engine_health_check
|
5
5
|
|
6
|
-
get '404', to: '
|
7
|
-
get '500', to: '
|
8
|
-
get 'internal_error_but_with_status200', to: '
|
6
|
+
get '404', to: 'application#page_not_found'
|
7
|
+
get '500', to: 'application#internal_error'
|
8
|
+
get 'internal_error_but_with_status200', to: 'application#internal_error_but_with_status200'
|
9
9
|
|
10
10
|
namespace :public, path: '' do
|
11
11
|
pg_resource(:mensaje_contactos, only: [:new, :create], path: 'contacto')
|
data/pg_rails/lib/version.rb
CHANGED