Module: Projects::IncidentsHelper

Defined in:
app/helpers/projects/incidents_helper.rb

Instance Method Summary collapse

Instance Method Details

#incidents_data(project, params) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/helpers/projects/incidents_helper.rb', line 4

def incidents_data(project, params)
  {
    'project-path' => project.full_path,
    'new-issue-path' => new_project_issue_path(project),
    'incident-template-name' => 'incident',
    'incident-type' => 'incident',
    'issue-path' => project_issues_path(project),
    'empty-list-svg-path' => image_path('illustrations/incident-empty-state.svg'),
    'text-query': params[:search],
    'author-username-query': params[:author_username],
    'assignee-username-query': params[:assignee_username],
    'can-create-incident': create_issue_type_allowed?(project, :incident).to_s
  }
end