Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-10-05 22:33:29 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-10-05 22:33:29 +0300
commit4cda11585c75ce923d357b0dbb91fb393ed8e303 (patch)
treef67a5375db33a4dc8d774732ae9514b540b4fb95 /app/controllers
parent6712762b9d6e0391b1a38ca17cc3d982a336bbf9 (diff)
Fix almost all unresolved comments from Docs and UX review
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/projects/clusters_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/projects/clusters_controller.rb b/app/controllers/projects/clusters_controller.rb
index 77644602b72..ce8e73392b8 100644
--- a/app/controllers/projects/clusters_controller.rb
+++ b/app/controllers/projects/clusters_controller.rb
@@ -70,10 +70,10 @@ class Projects::ClustersController < Projects::ApplicationController
def destroy
if cluster.destroy
- flash[:notice] = "Cluster was successfully removed."
+ flash[:notice] = "Cluster integration was successfully removed."
redirect_to project_clusters_path(project), status: 302
else
- flash[:notice] = "Cluster was not removed."
+ flash[:notice] = "Cluster integration was not removed."
render :show
end
end