11 lines
252 B
Ruby
11 lines
252 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Projects::TerraformHelper
|
||
|
def js_terraform_list_data(project)
|
||
|
{
|
||
|
empty_state_image: image_path('illustrations/empty-state/empty-serverless-lg.svg'),
|
||
|
project_path: project.full_path
|
||
|
}
|
||
|
end
|
||
|
end
|