codescape / jira-scrum-poker

Scrum Poker for Jira

Home Page:http://jira-scrum-poker.codescape.de

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow non-numeric values to be chosen and confirmed

codescape opened this issue · comments

Ignore coffee and question strings and allow all other values to be assigned.

Tasks

  • calculate need to talk flag correctly
  • allow to persist non numeric values into custom fields
  • validate configuration and return non-assignable values

Out of scope

Inspiration

Snippets

    CustomField customField = estimationFieldService.findStoryPointField();
    try {
        System.out.println("CustomField " + customField);
        // CustomField Story-Punkte
        System.out.println("CustomFieldType " + customField.getCustomFieldType());
        // CustomFieldType com.atlassian.jira.issue.customfields.impl.NumberCFType@13bf74e9
    } catch (Exception ignore) { }