Co-authored-by: Caleb Cartwright <calebcartwright@users.noreply.github.com> Co-authored-by: Paul Melnikow <github@paulmelnikow.com> Co-authored-by: chris48s <chris48s@users.noreply.github.com> Co-authored-by: Caleb Cartwright <calebcartwright@users.noreply.github.com> Co-authored-by: Paul Melnikow <github@paulmelnikow.com> Co-authored-by: chris48s <chris48s@users.noreply.github.com>
32 lines
536 B
JavaScript
32 lines
536 B
JavaScript
'use strict'
|
|
|
|
const sprintId = 8
|
|
const sprintQueryString = {
|
|
jql: `sprint=${sprintId} AND type IN (Bug,Improvement,Story,"Technical task")`,
|
|
fields: 'resolution',
|
|
maxResults: 500,
|
|
}
|
|
|
|
const user = 'admin'
|
|
const pass = 'password'
|
|
const host = 'myprivatejira.test'
|
|
const config = {
|
|
public: {
|
|
services: {
|
|
jira: {
|
|
authorizedOrigins: [`https://${host}`],
|
|
},
|
|
},
|
|
},
|
|
private: { jira_user: user, jira_pass: pass },
|
|
}
|
|
|
|
module.exports = {
|
|
sprintId,
|
|
sprintQueryString,
|
|
user,
|
|
pass,
|
|
host,
|
|
config,
|
|
}
|