You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2017/02/15 14:38:36 UTC

[02/12] airavata-php-gateway git commit: fixing AIRAVATA-2267 : In view credential please show the domain.

fixing AIRAVATA-2267 : In view credential please show the domain.


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/4c47e540
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/4c47e540
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/4c47e540

Branch: refs/heads/dreg-gateway
Commit: 4c47e5408c6f83fbc9b6704750c860ae0af37bd6
Parents: f436e6a
Author: scnakandala <su...@gmail.com>
Authored: Mon Jan 30 11:15:01 2017 -0500
Committer: scnakandala <su...@gmail.com>
Committed: Mon Jan 30 11:15:01 2017 -0500

----------------------------------------------------------------------
 app/views/account/dashboard.blade.php | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/4c47e540/app/views/account/dashboard.blade.php
----------------------------------------------------------------------
diff --git a/app/views/account/dashboard.blade.php b/app/views/account/dashboard.blade.php
index f23b40e..d59f78f 100644
--- a/app/views/account/dashboard.blade.php
+++ b/app/views/account/dashboard.blade.php
@@ -187,6 +187,10 @@
                             <td class="gateway-url"></td>
                         </tr>
                         <tr>
+                            <td>Gateway Domain</td>
+                            <td class="gateway-domain"></td>
+                        </tr>
+                        <tr>
                             <td>Admin Username</td>
                             <td class="admin-username"></td>
                         </tr>
@@ -491,6 +495,7 @@
         $(".admin-password").html( gatewayObject["identityServerPasswordToken"]);
         $(".gateway-id").html( gatewayObject["gatewayId"]);
         $(".gateway-url").html( gatewayObject["gatewayURL"]);
+        $(".gateway-domain").html( gatewayObject["domain"]);
         $(".oauth-client-key").html( gatewayObject["oauthClientId"]);
         $(".oauth-client-secret").html( gatewayObject["oauthClientSecret"]);
         $("#viewCredentials").modal("show");