Commit 54231aa4 authored by Robert Schilling's avatar Robert Schilling

Styling changes to code and docs

parent 3ab9ea8d
......@@ -617,7 +617,6 @@ Example response:
}
```
### Archive a project
Archives the project if the user is either admin or the project owner of this project. This action is
......
......@@ -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)
......
......@@ -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!
......
......@@ -1023,7 +1023,7 @@ describe API::API, api: true do
describe 'POST /projects/:id/star' do
context 'on an unstarred project' do
it 'stars the project' do
post api("/projects/#{project.id}/star", user)
expect { post api("/projects/#{project.id}/star", user) }.to change { project.reload.star_count }.by(1)
expect(response.status).to eq(201)
expect(json_response['star_count']).to eq(1)
......@@ -1037,10 +1037,9 @@ describe API::API, api: true do
end
it 'does not modify the star count' do
post api("/projects/#{project.id}/star", user)
expect { post api("/projects/#{project.id}/star", user) }.not_to change { project.reload.star_count }
expect(response.status).to eq(304)
expect(project.star_count).to eq(1)
end
end
end
......@@ -1053,7 +1052,7 @@ describe API::API, api: true do
end
it 'unstars the project' do
delete api("/projects/#{project.id}/star", user)
expect { delete api("/projects/#{project.id}/star", user) }.to change { project.reload.star_count }.by(-1)
expect(response.status).to eq(200)
expect(json_response['star_count']).to eq(0)
......@@ -1062,10 +1061,9 @@ describe API::API, api: true do
context 'on an unstarred project' do
it 'does not modify the star count' do
delete api("/projects/#{project.id}/star", user)
expect { delete api("/projects/#{project.id}/star", user) }.not_to change { project.reload.star_count }
expect(response.status).to eq(304)
expect(project.star_count).to eq(0)
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment