From a065aabda77c167c1533569ee7a7425a8f4e4f47 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Tue, 29 Jan 2013 14:34:42 -0800 Subject: [PATCH] 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 --- ui/plugins/testPlugin/config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/plugins/testPlugin/config.js b/ui/plugins/testPlugin/config.js index 7b653dbafa2..e6f648c9b97 100644 --- a/ui/plugins/testPlugin/config.js +++ b/ui/plugins/testPlugin/config.js @@ -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)); \ No newline at end of file