Beispiel #1
0
        public List <string> GetAvailableTicketTypes()
        {
            var ticketTypes = new List <string>();

            try
            {
                if (jira != null)
                {
                    ticketTypes.AddRange(jira.GetIssueTypes().Select(type => type.name));
                }
            }
            catch
            {
                // do nothing.
            }
            return(ticketTypes);
        }