Commit 399e633983a7c420b8ffe21ac60cd26da97ebd0f
1 parent
cf79a291
Exists in
master
and in
1 other branch
added missing initialized model
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
app/controllers/apps_controller.rb
... | ... | @@ -90,6 +90,7 @@ class AppsController < InheritedResources::Base |
90 | 90 | def plug_params app |
91 | 91 | app.watchers.build if app.watchers.none? |
92 | 92 | app.issue_tracker = IssueTracker.new unless app.issue_tracker_configured? |
93 | + app.notification_service = NotificationService.new | |
93 | 94 | app.copy_attributes_from(params[:copy_attributes_from]) if params[:copy_attributes_from] |
94 | 95 | end |
95 | 96 | ... | ... |