diff options
author | Cyborus <cyborus@cyborus.xyz> | 2024-04-26 00:19:10 +0200 |
---|---|---|
committer | Cyborus <cyborus@cyborus.xyz> | 2024-04-26 00:19:10 +0200 |
commit | 736dd72993836bde38f832e88d086949508fed02 (patch) | |
tree | a2bd08746c95662b6dfe914ae16954604caffdaf /swagger.v1.json | |
parent | `CreateRepoOption`'s `object_format_name` field is required (diff) | |
download | forgejo-api-736dd72993836bde38f832e88d086949508fed02.tar.xz forgejo-api-736dd72993836bde38f832e88d086949508fed02.zip |
remove `object_format_name` for now
forgejo currently has a bug where the `object_format_name` field is
always an empty string. for now, just don't include it.
should be fixed in https://codeberg.org/forgejo/forgejo/pulls/3464
Diffstat (limited to 'swagger.v1.json')
-rw-r--r-- | swagger.v1.json | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/swagger.v1.json b/swagger.v1.json index 5d93ddb..36592ad 100644 --- a/swagger.v1.json +++ b/swagger.v1.json @@ -17348,7 +17348,7 @@ "CreateRepoOption": { "description": "CreateRepoOption options when creating repository", "type": "object", - "required": ["name", "object_format_name"], + "required": ["name"], "properties": { "auto_init": { "description": "Whether the repository should be auto-initialized?", @@ -17386,12 +17386,6 @@ "uniqueItems": true, "x-go-name": "Name" }, - "object_format_name": { - "description": "ObjectFormatName of the underlying git repository", - "type": "string", - "enum": ["sha1", "sha256"], - "x-go-name": "ObjectFormatName" - }, "private": { "description": "Whether the repository is private", "type": "boolean", @@ -21263,12 +21257,6 @@ "type": "string", "x-go-name": "Name" }, - "object_format_name": { - "description": "ObjectFormatName of the underlying git repository", - "type": "string", - "enum": ["sha1", "sha256"], - "x-go-name": "ObjectFormatName" - }, "open_issues_count": { "type": "integer", "format": "int64", |