File: remote_mirror.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (21 lines) | stat: -rw-r--r-- 1,177 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module API
  module Entities
    class RemoteMirror < Grape::Entity
      expose :id, documentation: { type: 'integer', example: 101486 }
      expose :enabled, documentation: { type: 'boolean', example: true }
      expose :safe_url, as: :url, documentation: { type: 'string', example: 'https://*****:*****@example.com/gitlab/example.git' }
      expose :update_status, documentation: { type: 'string', example: 'finished' }
      expose :last_update_at, documentation: { type: 'dateTime', example: '2020-01-06T17:32:02.823Z' }
      expose :last_update_started_at, documentation: { type: 'dateTime', example: '2020-01-06T17:32:02.823Z' }
      expose :last_successful_update_at, documentation: { type: 'dateTime', example: '2020-01-06T17:31:55.864Z' }
      expose :last_error, documentation: { type: 'integer', example: 'The remote mirror URL is invalid.' }
      expose :only_protected_branches, documentation: { type: 'boolean' }
      expose :keep_divergent_refs, documentation: { type: 'boolean' }
      expose :auth_method, documentation: { type: 'string', example: 'password' }
    end
  end
end

API::Entities::RemoteMirror.prepend_mod