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
path: root/lib
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2016-04-13 13:50:00 +0300
committerRobert Schilling <rschilling@student.tugraz.at>2016-04-13 17:25:24 +0300
commit54231aa4e036179d035ddd3641bc15a5b31883f2 (patch)
tree29633c8be132cbf12ef163575770c0646316438f /lib
parent3ab9ea8dae1edc6ab8c8563843342890736eb24c (diff)
Styling changes to code and docs
Diffstat (limited to 'lib')
-rw-r--r--lib/api/helpers.rb2
-rw-r--r--lib/api/projects.rb4
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
index aa0597564ed..54452f763a6 100644
--- a/lib/api/helpers.rb
+++ b/lib/api/helpers.rb
@@ -242,7 +242,7 @@ module API
end
def not_modified!
- render_api_error!('304 Not modified', 304)
+ render_api_error!('304 Not Modified', 304)
end
def render_validation_error!(model)
diff --git a/lib/api/projects.rb b/lib/api/projects.rb
index c7fdfbfe57b..cc2c7a0c503 100644
--- a/lib/api/projects.rb
+++ b/lib/api/projects.rb
@@ -284,6 +284,7 @@ module API
else
current_user.toggle_star(user_project)
user_project.reload
+
present user_project, with: Entities::Project
end
end
@@ -293,11 +294,12 @@ module API
# Parameters:
# id (required) - The ID of a project
# Example Request:
- # DELETE /projects/:id/unstar
+ # DELETE /projects/:id/star
delete ':id/star' do
if current_user.starred?(user_project)
current_user.toggle_star(user_project)
user_project.reload
+
present user_project, with: Entities::Project
else
not_modified!