diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2017-02-06 16:54:30 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2017-02-07 12:20:00 +0100 |
commit | 626e79b6f5ed18e1d023643d3e4b85dc4f20286c (patch) | |
tree | e1579e1f457f25ae2c511d8e812fa2956eef0e01 /lib/api/entities.rb | |
parent | 5985b55769303824f0ce64ae293b0498f2edfc1b (diff) | |
download | gitlab-ce-api-remove-snippets-expires-at.tar.gz |
Split V3 entities into a separate fileapi-remove-snippets-expires-at
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index d296fbb9313..5d7b8e021bb 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -694,19 +694,5 @@ module API expose :id, :message, :starts_at, :ends_at, :color, :font expose :active?, as: :active end - - # Entities for the deprecated V3 API - class ProjectSnippetV3 < Grape::Entity - expose :id, :title, :file_name - expose :author, using: Entities::UserBasic - expose :updated_at, :created_at - - # TODO (rspeicher): Deprecated; remove in 9.0 - expose(:expires_at) { |snippet| nil } - - expose :web_url do |snippet, options| - Gitlab::UrlBuilder.build(snippet) - end - end end end |