aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.lisp
blob: b1093b64428c9ad279545e8975096e54fa7c7bbc (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
(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")

   (jql
     :initarg :jql
     :reader jql
     :documentation "JQL querying issues to watch")))