Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2016-11-18 13:38:54 +0300
committerZ.J. van de Weg <git@zjvandeweg.nl>2016-11-18 13:38:54 +0300
commitf749fb7fe0574d07eeb38561b9af62754e518281 (patch)
treee8647693e60b73f12cd3b9dca0efb0aec1796fcb /lib/gitlab/chat_commands
parentb8607576c1bb25fe2cbb575b48becdf7bd4aaa8c (diff)
Improve style, add more tests
Diffstat (limited to 'lib/gitlab/chat_commands')
-rw-r--r--lib/gitlab/chat_commands/base_command.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/chat_commands/base_command.rb b/lib/gitlab/chat_commands/base_command.rb
index f84aca5365d..e59d69b72b9 100644
--- a/lib/gitlab/chat_commands/base_command.rb
+++ b/lib/gitlab/chat_commands/base_command.rb
@@ -3,7 +3,7 @@ module Gitlab
class BaseCommand
QUERY_LIMIT = 5
- def self.match(_)
+ def self.match(_text)
raise NotImplementedError
end
@@ -11,11 +11,11 @@ module Gitlab
raise NotImplementedError
end
- def self.available?(_)
+ def self.available?(_project)
raise NotImplementedError
end
- def self.allowed?(_, _)
+ def self.allowed?(_user, _ability)
true
end