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,
|
2021-08-12 11:09:58 -04:00
|
|
|
terraform_admin: current_user&.can?(:admin_terraform_state, project),
|
|
|
|
access_tokens_path: profile_personal_access_tokens_path,
|
|
|
|
username: current_user&.username,
|
|
|
|
terraform_api_url: "#{Settings.gitlab.url}/api/v4/projects/#{project.id}/terraform/state"
|
2020-11-06 07:09:17 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|