mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 07:53:28 +02:00
* fix bug on port forwarding feature Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * fix lint error Signed-off-by: Denis barbaron <denis.barbaron@orange.com> Signed-off-by: Denis barbaron <denis.barbaron@orange.com>
17 lines
538 B
JavaScript
17 lines
538 B
JavaScript
/**
|
|
* Copyright © 2023 contains code contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
|
|
**/
|
|
|
|
require('./port-forwarding.css')
|
|
|
|
module.exports = angular.module('stf.port-forwarding', [
|
|
require('stf/common-ui/table').name
|
|
])
|
|
.run(['$templateCache', function($templateCache) {
|
|
$templateCache.put(
|
|
'control-panes/advanced/port-forwarding/port-forwarding.pug',
|
|
require('./port-forwarding.pug')
|
|
)
|
|
}])
|
|
.controller('PortForwardingCtrl', require('./port-forwarding-controller'))
|