Intial commit

This commit is contained in:
2021-02-04 18:27:19 -05:00
commit f6faf473fb
15 changed files with 634 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
from jira_tracker.logger import logger
class TrackerIssue:
def __init__(self, jira_issue):
self.data = jira_issue
@property
def name(self):
return str(self.data)
@property
def summary(self):
return str(self.data.fields.summary)
@property
def status(self):
return str(self.data.fields.status)
@property
def points(self):
return str(self.data.fields.customfield_10016)