debian-mirror-gitlab/lib/api/entities/email.rb

10 lines
150 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class Email < Grape::Entity
2021-04-29 21:17:54 +05:30
expose :id, :email, :confirmed_at
2020-03-13 15:44:24 +05:30
end
end
end