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

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

12 lines
202 B
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# frozen_string_literal: true
module API
module Entities
module Ci
class RunnerRegistrationDetails < Grape::Entity
2022-04-04 11:22:00 +05:30
expose :id, :token, :token_expires_at
2021-09-30 23:02:18 +05:30
end
end
end
end