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

   (email-to
     :initarg :email-to
     :reader email-to
     :documentation "Email recipient")

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