summaryrefslogtreecommitdiff
path: root/lib/gitlab/slash_commands/dsl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/slash_commands/dsl.rb')
-rw-r--r--lib/gitlab/slash_commands/dsl.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/slash_commands/dsl.rb b/lib/gitlab/slash_commands/dsl.rb
index 614bafbe1b2..1b5b4566d81 100644
--- a/lib/gitlab/slash_commands/dsl.rb
+++ b/lib/gitlab/slash_commands/dsl.rb
@@ -40,8 +40,8 @@ module Gitlab
# command :command_key do |arguments|
# # Awesome code block
# end
- def params(*params)
- @params = params
+ def params(*params, &block)
+ @params = block_given? ? block : params
end
# Allows to give an explanation of what the command will do when