Module: Ci::PipelineSchedulesHelper

Defined in:
app/helpers/ci/pipeline_schedules_helper.rb

Instance Method Summary collapse

Instance Method Details

#js_pipeline_schedules_form_data(project, schedule) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
# File 'app/helpers/ci/pipeline_schedules_helper.rb', line 5

def js_pipeline_schedules_form_data(project, schedule)
  {
    full_path: project.full_path,
    daily_limit: schedule.daily_limit,
    timezone_data: timezone_data.to_json,
    project_id: project.id,
    default_branch: project.default_branch,
    settings_link: project_settings_ci_cd_path(project),
    schedules_path: pipeline_schedules_path(project)
  }
end