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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-26 00:11:07 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-26 00:11:07 +0300
commit1c61faf876f0da721dde9dc52fb28ab0e7330c6d (patch)
treeb2c5330325d7cc53098dbcf53de1186f5b54bfba /app/services/applications
parenteccc2ec564f427460be5ffa6f9a6fb25f3f7fe6d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/applications')
-rw-r--r--app/services/applications/create_service.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/services/applications/create_service.rb b/app/services/applications/create_service.rb
index 96cde9057c7..3737960c941 100644
--- a/app/services/applications/create_service.rb
+++ b/app/services/applications/create_service.rb
@@ -2,6 +2,8 @@
module Applications
class CreateService
+ include BaseServiceUtility
+
attr_reader :current_user, :params
def initialize(current_user, params)
@@ -20,6 +22,7 @@ module Applications
end
@application.save
+ notification_service.application_created(current_user)
@application
end
end