I hereby claim:
- I am thesharpieone on github.
- I am thesharpieone (https://keybase.io/thesharpieone) on keybase.
- I have a public key ASCZWorIIQaKmtqUMBBkGAHiVErI-1gnARxLQPXqIGET1Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /* exported Script */ | |
| /* globals console, _, s, HTTP */ | |
| const username = 'JIRA_SERVICE_ACCOUNT_USERNAME'; | |
| const password = 'JIRA_SERVICE_ACCOUNT_PASSWORD'; | |
| const baseJiraUrl = 'ON_PREM_JIRA_DOMAIN'; | |
| const baseApiUrl = `${baseJiraUrl}/rest/api/2`; | |
| const apiTicketBase = `${baseApiUrl}/issue`; | |
| const browseTicketBase = `${baseJiraUrl}/browse`; | |
| // If behind corp proxy |
| // Framework print grid generation (for v4.0.0-beta.2) | |
| // | |
| // Used only to generate the correct number of grid classes given | |
| // any value of `$grid-columns`. | |
| // import bootstrap prior to this mixin to set the various variables and mixins needed/used. | |
| @mixin make-print-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $name: "pr") { | |
| @media print { | |
| // Common properties | |
| %grid-column-print { |