Hi community,
I would like to schedule the task/sprints for my team.
I would like to have a simple way to schedule our springs. For example: Sprint 1 from 2 to 16 february, sprint 2 from 5 to 19 february and so on...
I tryied to use the parallels sprint but the problem was that I saw all the task in the same column, It seems that all task start at the same time, and the assignee has to do the task doesn't understand when the task has to be done.
Can somebody can explain to me?
Anyway this script is working.
// restrict components fields based on another single select field
import com.atlassian.jira.bc.project.component.ProjectComponentManager
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
import static com.atlassian.jira.issue.IssueFieldConstants.COMPONENTS
@BaseScript FieldBehaviours fieldBehaviours
def projectComponentManager = ComponentAccessor.getProjectComponentManager()
def components = projectComponentManager.findAllForProject(issueContext.projectObject.id)
def availableComponents = []
def issueTypeField = getFieldById(COMPONENTS)
def productField = getFieldByName("Product")
def productOption = productField.getValue() as String
if ( productOption == "Infinity Fabric") {
availableComponents.addAll(components.findAll { it.name in ["Application"] })
}
issueTypeField.setFieldOptions(availableComponents)
availableComponents.addAll(components.findAll { it.name in ["Application"] })Is 'Application' the name of a component?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.