mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
* refactor(host): replace host-browser with es6 class * refactor(host): replace promises with async * refactor(hosts): replace delete promise with async * refactor(host): replace upload file with async * refactor(host): replace template strings * fix(host): replace host root * feat(agent): rename main file
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
import angular from 'angular';
|
|
import { HostBrowserController } from './hostBrowserController';
|
|
|
|
angular.module('portainer.agent').component('hostBrowser', {
|
|
controller: HostBrowserController,
|
|
templateUrl: './hostBrowser.html',
|
|
});
|