From 7ee79fc3a89698479b442460099d2fadc3143380 Mon Sep 17 00:00:00 2001 From: thuva4 Date: Thu, 15 Mar 2018 19:51:43 +0530 Subject: fix the authentication=false in testcases page fix the authentication error in testcases page when authenticate=false + tests JIRA: RELENG-340 Change-Id: Ic2ad2a9676de46e9e6b8209750a5728eea9fa9ab Signed-off-by: thuva4 --- .../projects/project/testCases/testCases.html | 134 ++++++++++----------- .../project/testCases/testCasesController.js | 4 +- 2 files changed, 69 insertions(+), 69 deletions(-) (limited to 'testapi/opnfv_testapi/ui/components/projects/project/testCases') diff --git a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html index ee87e0a..395db03 100644 --- a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html +++ b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCases.html @@ -1,68 +1,68 @@
-
-
- -
-
- -
-
-
- - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
Bulk SelectNameTierBlockingCI LoopOperations
-
- -
-
- - {{testcase.name}} - - {{testcase.tier}}{{testcase.blocking}}{{testcase.ci_loop}} - - - - - - -
-
-
-
+
+
+ +
+
+ +
+
+
+ + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
Bulk SelectNameTierBlockingCI LoopOperations
+
+ +
+
+ + {{testcase.name}} + + {{testcase.tier}}{{testcase.blocking}}{{testcase.ci_loop}} + + + + + + +
+
+
+ \ No newline at end of file diff --git a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js index 9a865d3..4d6153e 100644 --- a/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js +++ b/testapi/opnfv_testapi/ui/components/projects/project/testCases/testCasesController.js @@ -21,7 +21,7 @@ TestCasesController.$inject = [ '$scope', '$http', '$filter', '$state', '$window', '$uibModal', 'testapiApiUrl','raiseAlert', - 'confirmModal' + 'confirmModal', 'authenticate' ]; /** @@ -31,7 +31,7 @@ * in them. */ function TestCasesController($scope, $http, $filter, $state, $window, $uibModal, testapiApiUrl, - raiseAlert, confirmModal) { + raiseAlert, confirmModal, authenticate) { var ctrl = this; ctrl.loadDetails = loadDetails; ctrl.name = $state.params['name']; -- cgit 1.2.3-korg