Page MenuHomeGRNET

No OneTemporary

File Metadata

Created
Sun, May 18, 12:56 AM
diff --git a/app/controllers/api/v1/clients_controller.rb b/app/controllers/api/v1/clients_controller.rb
index 4e2ff08..a092958 100644
--- a/app/controllers/api/v1/clients_controller.rb
+++ b/app/controllers/api/v1/clients_controller.rb
@@ -1,17 +1,31 @@
class Api::V1::ClientsController < Api::BaseController
before_action :require_api_login
# GET /api/clients
def index
hosts = current_api_user.hosts.in_bacula
api_render(hosts)
end
# GET /api/clients/1
def show
host = current_api_user.hosts.in_bacula.find(params[:id])
api_render(host)
end
+
+ # POST /api/clients/1/backup
+ def backup
+ host = current_api_user.hosts.in_bacula.find(params[:id])
+ job = host.job_templates.enabled.backup.find(params[:job_id])
+
+ if job.backup_now
+ message = 'Job is scheduled for backup'
+ else
+ message = 'Job can not be scheduled'
+ end
+
+ render json: { message: message }, status: :ok
+ end
end

Event Timeline