Reorganize plugins dir structure

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2018-02-26 13:32:14 +02:00
parent 645dceb0a2
commit ba95015a09
4 changed files with 3 additions and 2 deletions

View File

@ -1,12 +1,13 @@
module Gitlab
module Plugin
def self.files
Dir.glob(Rails.root.join('plugins/enabled/*'))
Dir.glob(Rails.root.join('plugins/*')).select do |entry|
File.file?(entry)
end
end
def self.execute_all_async(data)
files.each do |file|
puts file
PluginWorker.perform_async(file, data)
end
end