Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/45a93c05be83b8f77ac655b1bd65e324 to your computer and use it in GitHub Desktop.
Save iaindooley/45a93c05be83b8f77ac655b1bd65e324 to your computer and use it in GitHub Desktop.
Create secret gist
function createSecretGist(notification)
{
var notif = new Notification(notification);
notif.changedCardDescription().label("Code");
notif.card().attachLink(
createSecretGist(notif.card().description())
)
.setDescription("");
}
function createSecretGistViaGithubApi(code)
{
//implement me!
return gisturl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment