Skip to content

Improve Quick Action DSL

What does this MR do?

This improves the Quick Action DSL (see #216064 (closed)), allowing commands to be written as:

command :name do
  parse_params(as: :name) { |arg| arg.strip }
  action { update(name: name) }
  execution_message { "Set name to #{name}" }
  explanation { "Sets name to #{name}" }
end

This MR does not change the representation of commands (the CommandDefinition).

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Alex Kalderimis

Merge request reports