mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Add more metadata to plugin config.js: - externalLink: Link to plugin/author's web site - authorName: Author's full name - authorEmail: Author's contact e-mail
9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
(function (cloudStack) {
|
|
cloudStack.plugins.testPlugin.config = {
|
|
title: 'Test Plugin',
|
|
desc: 'Sample plugin',
|
|
externalLink: 'http://www.cloudstack.org/',
|
|
authorName: 'Test Plugin Developer',
|
|
authorEmail: 'plugin.developer@example.com'
|
|
};
|
|
}(cloudStack)); |