Viacheslav Bachynskyi

- Total activity 130
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 36
-
Edited How to track reactions in workflow?
Hello,Is it possible to track reactions to a comment via workflow?I tried to do this with this script:const entities = require('@jetbrains/youtrack-scripting-api/entities'); exports.rule = entities... -
Edited [RESOLVED] How to check if a value exists in an enum list?
Hello,I have an enum list, it's very large, is there any way to check if there is a value in the list other than looping through all the values in the list? As in this example: issue.fields.Na... -
Created Previous value of workItem
Hello,ctx.issue.editedWorkItems contains edited workItems. But how to find out the previous value of workItem that was before the change?Thanks -
Created Displaying a list of tasks with data from field with a negative range
Hello,I have a field of type Integer. I can output tasks where the value is less than zero with the following filter:has: Figures and Figures: * .. 0How to display a list of tasks with Figures in a... -
Edited [RESOLVED] How to determine that a task has been moved?
Hello,How to determine that a task has been moved from one project to another?Sometimes when transferring tasks from one project to another, some fields may be filled in, but I need to clear them. ... -
Created How to read the "Agent Signature" property?
Hello,How to read the "Agent Signature" property from a user profile? -
Edited [RESOLVED] Multiple Types in one alternative machine
Hello,As described in this article, for each additional Type we use a separate alternative machine. What if I need to use one machine for three types of tasks, and another one for three more?How to... -
Created Different file rights/owner
Hello,At some point the owner of the files changed:-rw-rw-r-- 1 root jetbrains 8388608 Dec 2 11:24 0000013mo00.xd -rw-rw-r-- 1 root jetbrains 8388608 Dec 2 11:24 0000013n000.xd -rw-... -
Edited [BUG] The 'required' function does not work properly on Agile Board
Hello,I have a simple script:const entities = require('@jetbrains/youtrack-scripting-api/entities'); exports.rule = entities.Issue.onChange({ title: 'QA check', guard: (ctx) => { return ctx.is... -
Edited [BUG] 'required' does not work in HelpDesk project
Hi, ctx.issue.fields.required(ctx.ExtUserMulti, 'Please, choose users.'); This method works fine in all projects, but not in the HelpDesk project. Is this a bug or a feature?