1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00
portainer/app/agent/components/file-uploader/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
295 B
JavaScript
Raw Normal View History

import angular from 'angular';
import { FileUploaderController } from './fileUploaderController';
angular.module('portainer.agent').component('fileUploader', {
templateUrl: './fileUploader.html',
controller: FileUploaderController,
bindings: {
uploadFile: '<onFileSelected',
},
});