Uses attributes_for_keys

This commit is contained in:
Alex Denisov 2012-09-16 22:44:20 +03:00
parent b6c6a5b159
commit c83af0dfe7

View file

@ -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