Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 3.29 KB

EditRepoOption.md

File metadata and controls

32 lines (27 loc) · 3.29 KB

openapi.model.EditRepoOption

Load the model package

import 'package:gitea_openapi/api.dart';

Properties

Name Type Description Notes
allowMergeCommits bool either `true` to allow merging pull requests with a merge commit, or `false` to prevent merging pull requests with merge commits. `has_pull_requests` must be `true`. [optional] [default to null]
allowRebase bool either `true` to allow rebase-merging pull requests, or `false` to prevent rebase-merging. `has_pull_requests` must be `true`. [optional] [default to null]
allowRebaseExplicit bool either `true` to allow rebase with explicit merge commits (--no-ff), or `false` to prevent rebase with explicit merge commits. `has_pull_requests` must be `true`. [optional] [default to null]
allowSquashMerge bool either `true` to allow squash-merging pull requests, or `false` to prevent squash-merging. `has_pull_requests` must be `true`. [optional] [default to null]
archived bool set to `true` to archive this repository. [optional] [default to null]
defaultBranch String sets the default branch for this repository. [optional] [default to null]
description String a short description of the repository. [optional] [default to null]
externalTracker ExternalTracker [optional] [default to null]
externalWiki ExternalWiki [optional] [default to null]
hasIssues bool either `true` to enable issues for this repository or `false` to disable them. [optional] [default to null]
hasPullRequests bool either `true` to allow pull requests, or `false` to prevent pull request. [optional] [default to null]
hasWiki bool either `true` to enable the wiki for this repository or `false` to disable it. [optional] [default to null]
ignoreWhitespaceConflicts bool either `true` to ignore whitespace for conflicts, or `false` to not ignore whitespace. `has_pull_requests` must be `true`. [optional] [default to null]
internalTracker InternalTracker [optional] [default to null]
name String name of the repository [optional] [default to null]
private bool either `true` to make the repository private or `false` to make it public. Note: you will get a 422 error if the organization restricts changing repository visibility to organization owners and a non-owner tries to change the value of private. [optional] [default to null]
template bool either `true` to make this repository a template or `false` to make it a normal repository [optional] [default to null]
website String a URL with more information about the repository. [optional] [default to null]

[Back to Model list] [Back to API list] [Back to README]