Reorganize plugins dir structure
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
645dceb0a2
commit
ba95015a09
4 changed files with 3 additions and 2 deletions
|
@ -1,12 +1,13 @@
|
||||||
module Gitlab
|
module Gitlab
|
||||||
module Plugin
|
module Plugin
|
||||||
def self.files
|
def self.files
|
||||||
Dir.glob(Rails.root.join('plugins/enabled/*'))
|
Dir.glob(Rails.root.join('plugins/*')).select do |entry|
|
||||||
|
File.file?(entry)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.execute_all_async(data)
|
def self.execute_all_async(data)
|
||||||
files.each do |file|
|
files.each do |file|
|
||||||
puts file
|
|
||||||
PluginWorker.perform_async(file, data)
|
PluginWorker.perform_async(file, data)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue