2020-11-06 07:09:17 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Projects::TerraformHelper
|
2020-12-08 22:09:24 -05:00
|
|
|
def js_terraform_list_data(current_user, project)
|
2020-11-06 07:09:17 -05:00
|
|
|
{
|
|
|
|
empty_state_image: image_path('illustrations/empty-state/empty-serverless-lg.svg'),
|
2020-12-08 22:09:24 -05:00
|
|
|
project_path: project.full_path,
|
|
|
|
terraform_admin: current_user&.can?(:admin_terraform_state, project)
|
2020-11-06 07:09:17 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|