Dmitry Rubtsov
- Total activity 24
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 8
-
Created Changing Subsystem list via the REST API
Is it possible to modify subsystems list of project via Rest-API? You have good documentation for getting values of projects subsystem but no any information about modifying collection. -
Created Check if Description of issue was changed.
Hello.I trying to check if description of issue was changed:```guard: function (ctx) { return (ctx.issue.fields.isChanged(ctx.issue.description) && ctx.issue.isReported); },```but it does't work. I... -
Edited Move the issue from current project to another.
Hi all. I am trying to move issue from one project to another from workflow. I've tried in two ways: ctx.issue.applyCommand('project PROJ2'); and var newProject = entities.Project.findByKey('PROJ2'... -
Created state-machine rules and oldValue() and becomes() functions
Hi everyone! I will try to get the old value of the issue field State when State changes from one to other: transitions: { 'testEnvInstall': { targetState: 'testEnvInstall', acti... -
Created JavaScript Workflows - get comments
Hi. I would like to get the last comment of issue. But I don't understand what type the object ctx.issue.comments? I tried to use: console.log(ctx.issue.comments); but I got {}Is it an array? -
Created New workflow editor (Pure JS) and fields with spaces
AnsweredHi. I'm trying a new editor right in the browser and there is a problem: I would like to use such expression, for example: var entities = require('v1/entities'); exports.rule = entities.Issue.onCha...