SSH Keys API implemented

This commit is contained in:
Alex Denisov 2012-09-16 17:52:06 +03:00
parent caef9ed112
commit c23eb40829
4 changed files with 106 additions and 0 deletions

View file

@ -48,5 +48,11 @@ module Gitlab
expose :assignee, :author, using: Entities::UserBasic
expose :closed, :updated_at, :created_at
end
class Key < Grape::Entity
expose :id,
:title,
:key
end
end
end