UI plugins: Add more metadata

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
This commit is contained in:
Brian Federle 2013-01-29 14:34:42 -08:00
parent b18bca651f
commit a065aabda7

View File

@ -1,6 +1,9 @@
(function (cloudStack) {
cloudStack.plugins.testPlugin.config = {
title: 'Test Plugin',
desc: 'Sample plugin'
desc: 'Sample plugin',
externalLink: 'http://www.cloudstack.org/',
authorName: 'Test Plugin Developer',
authorEmail: 'plugin.developer@example.com'
};
}(cloudStack));