summaryrefslogtreecommitdiff
path: root/lib/api/users.rb
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-08-10 18:07:50 -0400
committerRobert Speicher <rspeicher@gmail.com>2012-08-10 18:25:15 -0400
commit775418918782d5284000ed0bfea364458c748567 (patch)
treec31e3633a3bcbed17b000f0165cf35edad41f7ca /lib/api/users.rb
parent1413c23c502d5a5cbc9b81f553a245103c1d6e50 (diff)
downloadgitlab-ce-775418918782d5284000ed0bfea364458c748567.tar.gz
Fully embrace Ruby 1.9 hash syntax
Didn't bother with files in db/, config/, or features/
Diffstat (limited to 'lib/api/users.rb')
-rw-r--r--lib/api/users.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/api/users.rb b/lib/api/users.rb
index ef3762f30fc..81cb2a0e684 100644
--- a/lib/api/users.rb
+++ b/lib/api/users.rb
@@ -10,7 +10,7 @@ module Gitlab
# GET /users
get do
@users = User.all
- present @users, :with => Entities::User
+ present @users, with: Entities::User
end
# Get a single user
@@ -21,7 +21,7 @@ module Gitlab
# GET /users/:id
get ":id" do
@user = User.find(params[:id])
- present @user, :with => Entities::User
+ present @user, with: Entities::User
end
end
@@ -30,7 +30,7 @@ module Gitlab
# Example Request:
# GET /user
get "/user" do
- present @current_user, :with => Entities::User
+ present @current_user, with: Entities::User
end
end
end