diff options
author | Alex Denisov <1101.debian@gmail.com> | 2012-09-16 22:44:20 +0300 |
---|---|---|
committer | Alex Denisov <1101.debian@gmail.com> | 2012-09-16 22:44:20 +0300 |
commit | c83af0dfe7b82c355eb115a35bfee2a98146b64d (patch) | |
tree | 95085052ec09c568d38f859c983ab865b1c2e030 /lib/api/keys.rb | |
parent | b6c6a5b159beeb63829c72f5d7e2c48b1138705d (diff) | |
download | gitlab-ce-c83af0dfe7b82c355eb115a35bfee2a98146b64d.tar.gz |
Uses attributes_for_keys
Diffstat (limited to 'lib/api/keys.rb')
-rw-r--r-- | lib/api/keys.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/api/keys.rb b/lib/api/keys.rb index d58c7caf5ce..4c302727c4f 100644 --- a/lib/api/keys.rb +++ b/lib/api/keys.rb @@ -26,10 +26,8 @@ module Gitlab # Example Request: # POST /keys post do - key = current_user.keys.new( - title: params[:title], - key: params[:key] - ) + attrs = attributes_for_keys [:title, :key] + key = current_user.keys.new attrs if key.save present key, with: Entities::Key else |