AIRAVATA-2370 restoring gateway request routes Looks like these were unintentionally removed during the develop->master merge.
Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/69dba346 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/69dba346 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/69dba346 Branch: refs/heads/dreg-gateway Commit: 69dba346f01bd356fbad1dc4b603c02ff4d136bc Parents: f06927d Author: Marcus Christie <[email protected]> Authored: Wed Apr 19 13:04:23 2017 -0400 Committer: Marcus Christie <[email protected]> Committed: Wed Apr 19 13:04:23 2017 -0400 ---------------------------------------------------------------------- app/routes.php | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/69dba346/app/routes.php ---------------------------------------------------------------------- diff --git a/app/routes.php b/app/routes.php index 7c86629..1408b98 100755 --- a/app/routes.php +++ b/app/routes.php @@ -347,6 +347,8 @@ Route::post("admin/create-pwd-token", "AdminController@createPWD"); Route::post("admin/remove-pwd-token", "AdminController@removePWD"); +//GatewayProviders +Route::get("provider/request-gateway", "AdminController@requestGateway"); //notices Route::get("admin/dashboard/notices", "AdminController@noticesView"); @@ -364,6 +366,8 @@ Route::post("notice-seen-ack", "AccountController@noticeSeenAck"); Route::post("admin/add-gateway", "AdminController@addGateway"); Route::get("admin/add-gateway", "AdminController@addGateway"); +Route::get("admin/update-gateway-request", "AdminController@updateGatewayRequest"); + /* * Theme Pages Routes */
