about summary refs log tree commit diff
path: root/org-clubhouse.el
AgeCommit message (Collapse)AuthorFilesLines
2018-08-13 feat: Allow creating tickets with a task listGriffin Smith1-32/+138
Allow creating stories along with a task list comprised of their child elements
2018-06-14 feat: support updating the story titleAlex Dao1-0/+12
Defines an 'org-clubhouse-update-story-title' interactive function. Can only be invoked if cursor is over the Headline title fixes string-to-int -> string-to-number (unsupported as of Emacs 26)
2018-06-14 feat: support setting a default story typeAlex Dao1-29/+51
Expose a `org-clubhouse-default-story-type` variable that can be set to `feature`, `bug`, `chore` or `prompt`. If set to `prompt`, the org-clubhouse `Create new story` flow will prompt for the story type each time. If set to any of the other values, the `Create new story` flow will use that value for all new stories until that variable is set otherwise. This also exposes a new interactive function called `org-clubhouse-set-default-story-type` that prompts users to set the default story type value.
2018-06-14 feat: support setting story type on creationAlex Dao1-10/+36
Adds an interactive menu for selecting story type on story creation.
2018-04-11 refactor: Parametrize org-clubhouse-requestGriffin Smith1-25/+29
Make org-clubhouse-request a kv-function with an additional :params kv, for supporting query params in requests
2018-03-12 feat: Allow creating epicsGriffin Smith1-17/+101
Add an org-clubhouse-create-epic function that prompts for a milestone then creates a new epic under that milestone from the current org element
2018-03-02 fix: namespace function call to match nameRussell Matney1-1/+1
Hotfix - this was not working!
2018-03-02 feat: create-story region supportedRussell Matney1-36/+87
Refactors `org-clubhouse-create-story` to pull stories from a region if one is selected, and fallback to the headline at point.
2018-03-02 docs: MIT LicenseGriffin Smith1-0/+17
2018-03-02 init: Initial commit of org-clubhouseGriffin Smith1-0/+421
As committed, this allows creating Clubhouse tickets from a heading in org-mode, and then updating the status of those tickets when the Org status updates