Skip to content

Instantly share code, notes, and snippets.

@takezoe
Last active August 29, 2015 14:02
Show Gist options
  • Save takezoe/b4625a3c344852dc1eff to your computer and use it in GitHub Desktop.
Save takezoe/b4625a3c344852dc1eff to your computer and use it in GitHub Desktop.
GitBucket plug-in example
// Add a global menu item to the header
PluginSystem.addGlobalMenu("Google", "http://www.google.co.jp/", "data:image/png;base64,..."
function(context){
return context.loginAccount.isDefined();
}
);
// Add a custom action
PluginSystem.addGlobalAction('/test', function(request, response){
return "<h1>This is Test Plug-In</h1>";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment