* feat(stack): add the ability for an administrator user to manage orphaned stacks (#4397) * feat(stack): apply small font size to the information text of associate (#4397) Co-authored-by: Simon Meng <simon.meng@portainer.io>
14 lines
484 B
JavaScript
14 lines
484 B
JavaScript
angular.module('portainer.app').component('porAccessControlForm', {
|
|
templateUrl: './porAccessControlForm.html',
|
|
controller: 'porAccessControlFormController',
|
|
bindings: {
|
|
// This object will be populated with the form data.
|
|
// Model reference in porAccessControlFromModel.js
|
|
formData: '=',
|
|
// Optional. An existing resource control object that will be used to set
|
|
// the default values of the component.
|
|
resourceControl: '<',
|
|
hideTitle: '<',
|
|
},
|
|
});
|