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:
authorJames Ramsay <jramsay@gitlab.com>2018-08-02 22:39:46 +0300
committerJames Ramsay <jramsay@gitlab.com>2018-08-03 18:55:21 +0300
commit79d90cb6bd99b7af572c65af89597c2e55217aea (patch)
treed28302d2bd63504b46c4eeef2877b4a3d099f893 /spec/requests
parentc60cb3935089eeb358b8e96e63d879d5b49a3dcf (diff)
Use Projects::UpdateService to archive projects
System hooks were not being triggered when projects were archived or unarchived. Reuse the Projects::UpdateService to automatically trigger system hooks and increase code reuse.
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/api/internal_spec.rb2
-rw-r--r--spec/requests/api/projects_spec.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/requests/api/internal_spec.rb b/spec/requests/api/internal_spec.rb
index b537b6e1667..85c93f35c20 100644
--- a/spec/requests/api/internal_spec.rb
+++ b/spec/requests/api/internal_spec.rb
@@ -429,7 +429,7 @@ describe API::Internal do
context "archived project" do
before do
project.add_developer(user)
- project.archive!
+ ::Projects::UpdateService.new(project, user, archived: true).execute
end
context "git pull" do
diff --git a/spec/requests/api/projects_spec.rb b/spec/requests/api/projects_spec.rb
index 71e3436fa76..eb41750bf47 100644
--- a/spec/requests/api/projects_spec.rb
+++ b/spec/requests/api/projects_spec.rb
@@ -1677,7 +1677,7 @@ describe API::Projects do
context 'on an archived project' do
before do
- project.archive!
+ ::Projects::UpdateService.new(project, user, archived: true).execute
end
it 'remains archived' do
@@ -1713,7 +1713,7 @@ describe API::Projects do
context 'on an archived project' do
before do
- project.archive!
+ ::Projects::UpdateService.new(project, user, archived: true).execute
end
it 'unarchives the project' do