Skip to content

Commit 7dcceeb

Browse files
committed
Added verifiable_password_authentication to /meta docs
1 parent 2d293a3 commit 7dcceeb

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

content/v3/meta.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: GitHub Meta API | GitHub API
44

55
# GitHub Meta API
66

7-
This gives some information about GitHub.com, the service.
7+
This gives some information about the GitHub server.
88

99
GET /meta
1010

@@ -17,7 +17,7 @@ This gives some information about GitHub.com, the service.
1717

1818
Name | Type | Description
1919
-----|------|--------------
20-
`hooks`|`array` of `strings` | An Array of IP addresses in CIDR format specifying the addresses that incoming service hooks will originate from. Subscribe to the [API Changes blog](http://developer.github.com/changes/) or follow [@GitHubAPI](https://twitter.com/GitHubAPI) on Twitter to get updated when this list changes.
21-
`git`|`array` of `strings` | An Array of IP addresses in CIDR format specifying the Git servers at GitHub.
22-
20+
`hooks`|`array` of `strings` | An Array of IP addresses in CIDR format specifying the addresses that incoming service hooks will originate from on GitHub.com. Subscribe to the [API Changes blog](http://developer.github.com/changes/) or follow [@GitHubAPI](https://twitter.com/GitHubAPI) on Twitter to get updated when this list changes.
21+
`git`|`array` of `strings` | An Array of IP addresses in CIDR format specifying the Git servers for GitHub.com.
22+
`verifiable_password_authentication`|`boolean` | Whether [Basic Authentication](v3/auth/#basic-authentication) is supported. Some [GitHub Enterprise](https://enterprise.github.com/) servers may return `false` here.
2323

lib/resources.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1489,7 +1489,8 @@ def text_html(response, status, head = {})
14891489

14901490
META = {
14911491
:hooks => ['127.0.0.1/32'],
1492-
:git => ['127.0.0.1/32']
1492+
:git => ['127.0.0.1/32'],
1493+
:verifiable_password_authentication => true
14931494
}
14941495

14951496
BLOB = {

0 commit comments

Comments
 (0)