A small Elixir client for the Jira REST API plus Tempo worklog endpoints used by intranet.
Add jira to your list of dependencies in mix.exs:
def deps do
[
{:jira, git: "https://github.com/<org>/jira.git", tag: "v0.1.0"}
]
endclient =
Jira.Client.new(%{
auth_token: "...",
account_id: "...",
account_email: "user@example.com",
tempo_token: "..."
})
Jira.get_projects(client, 1)mix deps.get
mix test