blob: ecee3dea79bc1fa079022ff7f6aabc7c0ec73cae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
(in-package :wajir)
(defclass config ()
((login
:initarg :login
:reader login
:documentation "Jira login email address")
(token
:initarg :token
:reader token
:documentation "Jira authentication token")
(endpoint
:initarg :endpoint
:reader endpoint
:documentation "Jira site URL (e.g. example.atlassian.net)")
(sendmail
:initarg :sendmail
:reader sendmail
:documentation "Email sending client command")
(email-to
:initarg :email-to
:reader email-to
:documentation "Email recipient")
(verbose
:initarg :verbose
:initform nil
:reader verbose
:documentation "Turn on verbose output")
(jql
:initarg :jql
:reader jql
:documentation "JQL querying issues to watch")))
|