From bac500fdeb3ac9b29c26fd8b48a0b1974c894413 Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin <godfat@godfat.org> Date: Mon, 19 Sep 2016 13:44:36 +0800 Subject: [PATCH] It no longer needs a block, feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6342#note_15434727 --- app/models/project_services/pipelines_email_service.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/models/project_services/pipelines_email_service.rb b/app/models/project_services/pipelines_email_service.rb index b4e36a7c3de..ec27aa88f16 100644 --- a/app/models/project_services/pipelines_email_service.rb +++ b/app/models/project_services/pipelines_email_service.rb @@ -1,9 +1,7 @@ class PipelinesEmailService < Service prop_accessor :recipients boolean_accessor :notify_only_broken_pipelines - validates :recipients, - presence: true, - if: ->(s) { s.activated? } + validates :recipients, presence: true, if: :activated? def initialize_properties self.properties ||= { notify_only_broken_pipelines: true } -- GitLab