fluke/devops-service/app/api2/handlers/bootstrap_templates.rb
2015-07-16 17:18:55 +03:00

21 lines
431 B
Ruby

require "commands/bootstrap_templates"
module Devops
module Version2_0
module Handler
class BootstrapTemplates
extend BootstrapTemplatesCommands
def self.get_bootstrap_templates
lambda {
check_privileges("templates", "r")
# broadcast(:cancel_order_failed, "hello")
json BootstrapTemplates.get_templates
}
end
end
end
end
end