Viacheslav Bachynskyi

- Total activity 130
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 36
-
Created Backup does not work
Hi, "YouTrack encountered a problem when creating a backup of your database: Blob file /opt/youtrack/data/youtrack/blobs/3/41.blob expected length is 78463 but actual is 86701" And now I cannot mak... -
Created Is it possible to search for values or descriptions in an enum list via API?
Hello, Is it possible to search for values or descriptions in an enum list via API? -
Created Permission to edit enum values
Is there a way to allow users to add values to a enum list without giving access to the full project information? -
Edited [Resolved] How to add multiple values to a Set?
Hello, This guide explains how to add a value to a set. Is it possible to add multiple values to a set in a single POST request? Thank you. -
Edited [RESOLVED] How to add users to Watchers?
Hello, I'm trying to add multiple users to Watchers, but I can't. Here's what I've tried. What am I doing wrong? function uAddWatchers(username) { //console.log("Username: " + username.log... -
Edited [Resolved] Using the REST API to link issues with DB IDs
In this example we can link issues using human readable IDs. How to do the same with database ID? { "query": "relates to NP-92", "issues": [ { "idReadable": "NP-113" } ]} How to corre... -
Created State-machine rule: change State
Is there a way to change State from state-machine rules? I tried to do it like this: ctx.issue.fields['State'] = ctx.StateState.Open; I get no errors, the content of the ctx.issue.fields['State'] d... -
Created I don't need to add user to watchers
if (!issue.isVisibleTo(newuser)){ console.log("The following user will have access: " + newuser.login); issue.permittedUsers.add(newuser); } When I add a user in th... -
Edited [RESOLVED] Cannot change state in workflow
Hello, I need to change State state, but it doesn't work. I don't get any errors, just nothing happens. /* eslint-disable */var entities = require('@jetbrains/youtrack-scripting-api/entities');var ... -
Created Toggle Issue ID and Issue Title (Classic)
Hello, is there any way to switch the issue id and issue title so that the issue title comes before the issue id? For example:This is the first Issue. AT-1This is the second Issue. AT-2Instead of:A...