robokassa 0.0.21 → 0.0.22
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/config/routes.rb +5 -3
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.22
|
data/config/routes.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
Robokassa::Engine.routes.draw do
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
controller :robokassa do
|
4
|
+
get "/:notification_key/notify" => :notify, :as => :robokassa_notification
|
5
|
+
get "/success" => :success, :as => :robokassa_on_success
|
6
|
+
get "/fail" => :fail, :as => :robokassa_on_fail
|
7
|
+
end
|
6
8
|
end
|