@@ -101,12 +101,12 @@ angular.module('openshiftConsole')
101
101
102
102
// List image streams and templates in the both the shared `openshift`
103
103
// namespace and the project namespace.
104
- DataService . list ( "imagestreams" , { namespace : "openshift" } , function ( imageStreams ) {
105
- $scope . openshiftImageStreams = imageStreams . by ( "metadata.name" ) ;
104
+ DataService . list ( "imagestreams" , { namespace : "openshift" } ) . then ( function ( resp ) {
105
+ $scope . openshiftImageStreams = resp . by ( "metadata.name" ) ;
106
106
} ) ;
107
107
108
- DataService . list ( "templates" , { namespace : "openshift" } , function ( templates ) {
109
- $scope . openshiftTemplates = templates . by ( "metadata.name" ) ;
108
+ DataService . list ( "templates" , { namespace : "openshift" } ) . then ( function ( resp ) {
109
+ $scope . openshiftTemplates = resp . by ( "metadata.name" ) ;
110
110
} ) ;
111
111
112
112
// If the current namespace is `openshift`, don't request the same
@@ -115,12 +115,12 @@ angular.module('openshiftConsole')
115
115
$scope . projectImageStreams = [ ] ;
116
116
$scope . projectTemplates = [ ] ;
117
117
} else {
118
- DataService . list ( "imagestreams" , context , function ( imageStreams ) {
119
- $scope . projectImageStreams = imageStreams . by ( "metadata.name" ) ;
118
+ DataService . list ( "imagestreams" , context ) . then ( function ( resp ) {
119
+ $scope . projectImageStreams = resp . by ( "metadata.name" ) ;
120
120
} ) ;
121
121
122
- DataService . list ( "templates" , context , function ( templates ) {
123
- $scope . projectTemplates = templates . by ( "metadata.name" ) ;
122
+ DataService . list ( "templates" , context ) . then ( function ( resp ) {
123
+ $scope . projectTemplates = resp . by ( "metadata.name" ) ;
124
124
} ) ;
125
125
}
126
126
} ) ) ;
0 commit comments