summaryrefslogtreecommitdiff
path: root/app/services/milestones/update_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/milestones/update_service.rb')
-rw-r--r--app/services/milestones/update_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/milestones/update_service.rb b/app/services/milestones/update_service.rb
index ed64847f429..31b441ed476 100644
--- a/app/services/milestones/update_service.rb
+++ b/app/services/milestones/update_service.rb
@@ -5,9 +5,9 @@ module Milestones
case state
when 'activate'
- Milestones::ReopenService.new(project, current_user, {}).execute(milestone)
+ Milestones::ReopenService.new(parent, current_user, {}).execute(milestone)
when 'close'
- Milestones::CloseService.new(project, current_user, {}).execute(milestone)
+ Milestones::CloseService.new(parent, current_user, {}).execute(milestone)
end
if params.present?