debian-mirror-gitlab/lib/api/entities/ci/secure_file.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
268 B
Ruby
Raw Normal View History

2022-04-04 11:22:00 +05:30
# frozen_string_literal: true
module API
module Entities
module Ci
class SecureFile < Grape::Entity
expose :id
expose :name
expose :checksum
expose :checksum_algorithm
2022-05-07 20:08:51 +05:30
expose :created_at
2022-04-04 11:22:00 +05:30
end
end
end
end