Sha256: bf6fa88e2540582720b397b205dbdbbb9a189d78c023e7a52abe5a367c87fd3d
Contents?: true
Size: 863 Bytes
Versions: 4
Compression:
Stored size: 863 Bytes
Contents
object @task if @task extends 'foreman_tasks/api/tasks/show' attributes :parent_task_id, :start_at, :start_before, :external_id node(:action) { @task.action } node(:execution_plan) { { state: @task.execution_plan.state, cancellable: @task.execution_plan.cancellable? } } node(:failed_steps) { @task.input_output_failed_steps } node(:running_steps) { @task.input_output_running_steps } node(:help) { troubleshooting_info_text } node(:has_sub_tasks) { @task.sub_tasks.any? } node(:allowDangerousActions) { Setting['dynflow_allow_dangerous_actions'] } node(:locks) do @task.locks.map do |lock| { name: lock.name, exclusive: lock.exclusive, resource_type: lock.resource_type, resource_id: lock.resource_id } end end node(:username_path) { username_link_task(@task.owner, @task.username) } node(:dynflow_enable_console) { Setting['dynflow_enable_console'] }
Version data entries
4 entries across 4 versions & 1 rubygems