Issue
Represents an issue in YouTrack.
Extends BaseEntity.
Properties
Name | Type | Description | Read-only |
---|---|---|---|
attachments | | The set of attachments that are attached to the issue. | |
becomesReported | | If the issue becomes reported in the current transaction, this property is `true`. if (issue.fields.Subsystem !== null && issue.fields.Assignee === null &&
(((issue.isChanged('Subsystem') || issue.isChanged('project') && issue.isReported) ||
issue.becomesReported) {
issue.fields.Assignee = issue.fields.Subsystem.owner
} | |
becomesResolved | | If the issue is assigned a state that is considered resolved in the current transaction, this property is `true`. | |
becomesUnresolved | | If the issue is assigned a state that is considered unresolved in the current transaction. this property is `true`. | |
comments | | A list of comments for the issue. | |
created | | The date when the issue was created. | |
description | | The text that is entered as the issue description. | |
duplicateRoot | | The root issue in a tree of duplicates that are linked to the issue. For example, if `issueA` duplicates `issueB` and `issueB` duplicates `issueC`, then the value for the `issueA.duplicateRoot()` property is `issueC`. | |
editedComments | | The set of comments that are edited in the current transaction. Comments that are added and removed are not considered to be edited. Instead, these are represented by the `issue.comments.added` and `issue.comments.removed` properties. | |
fields | | All issue custom fields. Note that custom fields are the fields like `Assignee`, `State`, `Priority`, etc. (those values which are defined at `Custom fields` administration UI). The values like `reporter`, `project`, etc., are called just "fields" and accessed directly. if (issue.fields.becomes(ctx.Priority, ctx.Priority.Critical) {
issue.fields.Assignee = issue.project.leader;
} | |
id | | The issue ID. user.notify('Issue is overdue', 'Please, look at the issue: ' + issue.id); | |
isReported | | If the issue is already reported or becomes reported in the current transaction, this property is `true`. To apply changes to an issue draft, use `!issue.isReported`. issue.links['depends on'].forEach(function(dep) {
if (dep.isReported) {
assert(dep.State.resolved, 'The issue has unresolved dependencies and thus cannot be set Fixed!');
}
}); | |
isResolved | | If the issue is currently assigned a state that is considered resolved, this property is `true`. | |
isStarred | | If any user has added the star tag to watch the issue, this property is `true`. | |
links | | Issue links (e.g. `relates to`, `parent for`, etc.). Each link is a Set of Issue objects. if (issue.links['parent for'].added.isNotEmpty()) {
issue.links['parent for'].added.forEach(function(subtask) {
subtask.fields.Priority = issue.fields.Priority;
});
} | |
numberInProject | | The issue number in the project. | |
permittedGroup | | The user group for which the issue is visible. If the property contains a null value, the issue is visible to the All Users group. | |
permittedGroups | | The groups for which the issue is visible when the visibility is restricted to multiple groups. | |
permittedUsers | | The list of users for whom the issue is visible. | |
project | | The project to which the issue is assigned. | |
reporter | | The user who reported (created) the issue. issue.fields.Assignee = issue.reporter; | |
resolved | | The date and time when the issue was assigned a state that is considered to be resolved. | |
sprints | | The collection of sprints that this issue has been added to. | |
summary | | The text that is entered as the issue summary. | |
tags | | The list of tags that are attached to an issue. | |
updated | | The date when the issue was last updated. | |
updatedBy | | The user who last updated the issue. | |
url | | The absolute URL that points to the issue. user.notify('Issue is overdue', 'Please, look at the issue: ' + issue.url); | |
votes | | The number of votes for an issue. For vote-related methods, see User.canVoteIssue, User.voteIssue, User.canUnvoteIssue, and User.unvoteIssue. | |
workItems | | The set of work items that have been added to the issue. |
Constructors
Issue
Issue(reporter, project, summary)
Parameters
Name | Type | Description |
---|---|---|
reporter | | Issue reporter. Alternatively, pass a JSON specified by JsonForIssueConstructor |
project | | Project that the new issue is to belong to. |
summary | | Issue summary. |
Methods
action
static action(ruleProperties, ruleProperties.title, ruleProperties.command, ruleProperties.guard, ruleProperties.action, ruleProperties.requirements)
Creates a declaration of a rule that a user can apply to one or more issues with a command or menu option. The object that is returned by this method is normally exported to the `rule` property, otherwise it is not treated as a rule.
Parameters
Name | Type | Description |
---|---|---|
ruleProperties | | A JSON object that defines the properties for the rule. |
ruleProperties.title | | The human-readable name of the rule. Displayed in the administrative UI in YouTrack. |
ruleProperties.command | | The custom command that triggers the action. |
ruleProperties.guard | | A function that is invoked to determine whether the action is applicable to an issue. |
ruleProperties.action | | The function that is invoked when a user triggers this action. |
ruleProperties.requirements | | The set of entities that must be present for the script to work as expected. |
Return Value
Type | Description | |
---|---|---|
| The object representation of the rule. |
Example
var entities = require('@jetbrains/youtrack-scripting-api/entities');
exports.rule = entities.Issue.action({
title: 'Log comments',
command: 'log',
guard: function(ctx) {
return ctx.issue.isReported;
},
action: function(ctx) {
ctx.issue.comments.forEach(function(comment) {
console.log(comment.text);
});
}
});
findById
static findById(id)
Finds an issue by its visible ID.
Parameters
Name | Type | Description |
---|---|---|
id | | The issue ID. |
Return Value
Type | Description | |
---|---|---|
| The issue that is assigned the specified ID. |
onChange
static onChange(ruleProperties, ruleProperties.title, ruleProperties.action, ruleProperties.requirements)
Creates a declaration of a rule that is triggered when a change is applied to an issue. The object that is returned by this method is normally exported to the `rule` property, otherwise it is not treated as a rule.
Parameters
Name | Type | Description |
---|---|---|
ruleProperties | | A JSON object that defines the properties for the rule. |
ruleProperties.title | | The human-readable name of the rule. Displayed in the administrative UI in YouTrack. |
ruleProperties.action | | The function that is invoked on issue change. |
ruleProperties.requirements | | The set of entities that must be present for the script to work as expected. |
Return Value
Type | Description | |
---|---|---|
| The object representation of the rule. |
Example
var entities = require('@jetbrains/youtrack-scripting-api/entities');
exports.rule = entities.Issue.onChange({
title: 'On issue change, log its id',
action: function(ctx) {
console.log(ctx.issue.id);
}
});
onSchedule
static onSchedule(ruleProperties, ruleProperties.title, ruleProperties.search, ruleProperties.cron, ruleProperties.action, ruleProperties.requirements)
Creates a declaration of a rule that is triggered on a set schedule. The object that is returned by this method is normally exported to the `rule` property, otherwise it is not treated as a rule.
Parameters
Name | Type | Description |
---|---|---|
ruleProperties | | A JSON object that defines the properties for the rule. |
ruleProperties.title | | The human-readable name of the rule. Displayed in the administrative UI in YouTrack. |
ruleProperties.search | | A YouTrack search string or a function with no parameters that returns such a string. The specified action is applied to all issues that match the search and belong to the project that this rule is attached to. |
ruleProperties.cron | | A cron expression that specifies the interval for applying the rule. |
ruleProperties.action | | The function that is invoked on schedule for each issue that matches the search. |
ruleProperties.requirements | | The set of entities that must be present for the script to work as expected. |
Return Value
Type | Description | |
---|---|---|
| The object representation of the rule. |
Example
var entities = require('@jetbrains/youtrack-scripting-api/entities');
exports.rule = entities.Issue.onSchedule({
title: 'Log id of major issues every 5 seconds',
search: '#Major',
cron: '0/5 * * * * ?',
action: function(ctx) {
console.log(ctx.issue.id);
}
});
stateMachine
static stateMachine(ruleProperties, ruleProperties.title, ruleProperties.states, ruleProperties.requirements)
Creates declaration of a state-machine rule. The state-machine imposes restrictions for the transitions between values in a custom field. You can execute actions when the custom field is set to a value, changes from a value, or transitions from two specific values. The object that is returned by this method is normally exported to the `rule` property, otherwise it is not treated as a rule.
Parameters
Name | Type | Description |
---|---|---|
ruleProperties | | A JSON object that defines the properties for the rule. |
ruleProperties.title | | A human-readable name of the rule. Displayed in the administrative UI in YouTrack. |
ruleProperties.states | | A list of values for a custom field and the possible transitions between them. |
ruleProperties.requirements | | The set of entities that must be present for the script to work as expected. |
Return Value
Type | Description | |
---|---|---|
| The object representation of the rule. |
Example
var entities = require('@jetbrains/youtrack-scripting-api/entities');
exports.rule = entities.Issue.stateMachine({
title: 'Status state-machine',
fieldName: 'Status',
states: {
Open: {
initial: true,
transitions: {
start: {
targetState: 'In progress'
}
}
},
'In progress': {
onEnter: function(ctx) {
ctx.issue.fields.Assignee = ctx.currentUser;
},
transitions: {
fix: {
targetState: 'Fixed'
},
reopen: {
targetState: 'Open'
}
}
},
Fixed: {
transitions: {
}
}
},
requirements: {
Assignee: {
type: entities.User.fieldType
}
}
});
addComment
addComment(text, author)
Adds a comment to the issue. Makes `issue.comments.isChanged` return `true` for the current transaction.
Parameters
Name | Type | Description |
---|---|---|
text | | The text to add to the issue as a comment. Alternatively, pass a JSON specified by JsonForIssueAddComment |
author | | The author of the comment. |
Return Value
Type | Description | |
---|---|---|
| A newly created comment. |
addTag
addTag(name)
Adds a tag with the specified name to an issue. YouTrack adds the first matching tag that is visible to the current user. If a match is not found, a new private tag is created for the current user. When you use this method to add the star tag to an issue, the current user is added to the list of watchers. To add a tag that is not visible to the current user, use the applyCommand method instead. Use "add tag [tagName]" for the command parameter and specify the login for the owner of the tag in the runAs parameter.
Parameters
Name | Type | Description |
---|---|---|
name | | The name of the tag to add to the issue. |
Return Value
Type | Description | |
---|---|---|
| The tag that has been added to the issue. |
Example
Issue.addTag('doit');
addWorkItem
addWorkItem(description, date, author, duration, type)
Adds a work item to the issue.
Parameters
Name | Type | Description |
---|---|---|
description | | The description of the work item. Alternatively, pass a JSON specified by JsonForIssueAddWorkItem |
date | | The date that is assigned to the work item. |
author | | The user who performed the work. |
duration | | The work duration in minutes. |
type | | The work item type. |
Return Value
Type | Description | |
---|---|---|
| The new work item. |
applyCommand
applyCommand(command, runAs)
Applies a command to the issue.
Parameters
Name | Type | Description |
---|---|---|
command | | The command that is applied to the issue. |
runAs | | Specifies the user by which the command is applied. If this parameter is not set, the command is applied on behalf of the current user. |
becomes
becomes(fieldName, expected)
Checks whether a field is set to an expected value in the current transaction.
Parameters
Name | Type | Description |
---|---|---|
fieldName | | The name of the field to check. |
expected | | The expected value. |
Return Value
Type | Description | |
---|---|---|
| If the field is set to the expected value, returns `true`. |
canBeReadBy
canBeReadBy(fieldName, user)
Checks whether a user has permission to read the field.
Parameters
Name | Type | Description |
---|---|---|
fieldName | | The name of the field. |
user | | The user for whom the permission to read the field is checked. |
Return Value
Type | Description | |
---|---|---|
| If the user can read the field, returns `true`. |
canBeWrittenBy
canBeWrittenBy(fieldName, user)
Checks whether a user has permission to update the field.
Parameters
Name | Type | Description |
---|---|---|
fieldName | | The name of the field. |
user | | The user for whom the permission to update the field is checked. |
Return Value
Type | Description | |
---|---|---|
| If the user can update the field, returns `true`. |
clearAttachments
clearAttachments()
Removes all of the attachments from the issue.
copy
copy()
Creates a copy of the issue.
Return Value
Type | Description | |
---|---|---|
| The copy of the original issue. |
createCopy
createCopy()
Creates a copy of the issue. No workflows will be triggered for the newly created issue.
Return Value
Type | Description | |
---|---|---|
| The copy of the original issue. |
hasTag
hasTag(name)
Checks whether the specified tag is attached to an issue.
Parameters
Name | Type | Description |
---|---|---|
name | | The name of the tag to check for the issue. |
Return Value
Type | Description | |
---|---|---|
| If the specified tag is attached to the issue, returns `true`. |
isChanged
isChanged(fieldName)
Checks whether the value of a field is changed in the current transaction.
Parameters
Name | Type | Description |
---|---|---|
fieldName | | The name of the field to check. |
Return Value
Type | Description | |
---|---|---|
| If the value of the field is changed in the current transaction, returns `true`. |
isVisibleTo
isVisibleTo(user)
Checks whether the issues is accessible by specified user.
Parameters
Name | Type | Description |
---|---|---|
user | | The user to check |
Return Value
Type | Description | |
---|---|---|
| If the issue is accessbie for the user, returns 'true' |
oldValue
oldValue(fieldName)
Returns the previous value of a single-value field before an update was applied. If the field is not changed in the transaction, this value is equal to the current value of the field.
Parameters
Name | Type | Description |
---|---|---|
fieldName | | The name of the field. |
Return Value
Type | Description | |
---|---|---|
| previous If the field is changed in the current transaction, the previous value of the field. Otherwise, the current value of the field. |
removeTag
removeTag(name)
Removes a tag with the specified name from an issue. If the specified tag is not attached to the issue, an exception is thrown. This method first searches through tags owned by the current user, then through all other visible tags. To remove a tag that is not visible to the current user, use the applyCommand method instead. Use "remove tag [tagName]" for the command parameter and specify the login for the owner of the tag in the runAs parameter.
Parameters
Name | Type | Description |
---|---|---|
name | | The name of the tag to remove from the issue. |
Return Value
Type | Description | |
---|---|---|
| The tag that has been removed from the issue. |
Example
Issue.removeTag('waiting for reply');
required
required(fieldName, message)
Asserts that a value is set for a field. If a value for the required field is not set, the specified message is displayed in the user interface.
Parameters
Name | Type | Description |
---|---|---|
fieldName | | The name of the field to check. |
message | | The message that is displayed to the user that describes the field requirement. |
wikify
wikify(text)
Converts text with wiki markup to HTML. Use this method to send "pretty" notifications.
Parameters
Name | Type | Description |
---|---|---|
text | | The string of text to convert to HTML. |
Return Value
Type | Description | |
---|---|---|
| The wikified string |
Example
issue.Assignee.notify('Issue is commented', issue.wikify(comment.text));