summaryrefslogtreecommitdiff
path: root/web/stream/stream.component.ts
diff options
context:
space:
mode:
authorJames E. Blair <corvus@inaugust.com>2018-06-27 00:52:12 +0000
committerJames E. Blair <jeblair@redhat.com>2018-06-26 17:55:19 -0700
commitfc1a71f69fc4a09983a8b1018f3cf5a935037451 (patch)
tree568b1fb6e261887c243cfe5469341a49b5cbe0ad /web/stream/stream.component.ts
parent640fde3545744f9387495bcefd5070e9767848f8 (diff)
downloadzuul-fc1a71f69fc4a09983a8b1018f3cf5a935037451.tar.gz
Revert "Upgrade from angularjs (v1) to angular (v6)"
This reverts commit 36aecc1229d8071980210314bb1caa3fd4f9ef90. This reverts commit 683f50ed5537d7024912867a61870af57bfdbce9. This caused zuul.openstack.org to attempt to GET "https://api/status". Change-Id: Ib25356f7ea5bfeec84e91195ac161d497f74d73d
Diffstat (limited to 'web/stream/stream.component.ts')
-rw-r--r--web/stream/stream.component.ts32
1 files changed, 0 insertions, 32 deletions
diff --git a/web/stream/stream.component.ts b/web/stream/stream.component.ts
deleted file mode 100644
index 42bfe86a8..000000000
--- a/web/stream/stream.component.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2018 Red Hat, Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License"); you may
-// not use this file except in compliance with the License. You may obtain
-// a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations
-// under the License.
-
-import { Component, OnInit } from '@angular/core'
-import { ActivatedRoute } from '@angular/router'
-
-import ZuulService from '../zuul/zuul.service'
-import zuulStartStream from './zuulStartStream'
-
-@Component({
- styles: [require('./stream.component.css').toString()],
- template: require('./stream.component.html')
-})
-export default class StreamComponent implements OnInit {
-
- constructor(private route: ActivatedRoute, private zuul: ZuulService) {}
-
- ngOnInit() {
- zuulStartStream(this.route.snapshot.paramMap.get('tenant'), this.zuul)
- }
-}