You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2019/06/10 20:23:07 UTC

[trafficcontrol] branch master updated: Removed an unused Service from Traffic Portal (#3627)

This is an automated email from the ASF dual-hosted git repository.

mitchell852 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new 0e5bde2  Removed an unused Service from Traffic Portal (#3627)
0e5bde2 is described below

commit 0e5bde2649f09b1fe219762e0cc4cbae73077645
Author: ocket8888 <oc...@gmail.com>
AuthorDate: Mon Jun 10 14:23:01 2019 -0600

    Removed an unused Service from Traffic Portal (#3627)
---
 traffic_portal/app/src/common/api/RegexService.js | 29 -----------------------
 1 file changed, 29 deletions(-)

diff --git a/traffic_portal/app/src/common/api/RegexService.js b/traffic_portal/app/src/common/api/RegexService.js
deleted file mode 100644
index fcd3a64..0000000
--- a/traffic_portal/app/src/common/api/RegexService.js
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you 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.
- */
-
-var RegexService = function(Restangular, locationUtils, messageModel) {
-
-	this.getRegexes = function(dsId) {
-		return Restangular.all('deliveryservices_regexes').getList({ dsId: dsId });
-	};
-
-};
-
-RegexService.$inject = ['Restangular', 'locationUtils', 'messageModel'];
-module.exports = RegexService;