Skip to content

Commit 120b453

Browse files
authored
Merge pull request #35419 from github/repo-sync
Repo sync
2 parents 5cbec43 + f7a07d1 commit 120b453

File tree

5 files changed

+15
-29
lines changed

5 files changed

+15
-29
lines changed

content/admin/overview/about-the-github-enterprise-api.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ shortTitle: GitHub Enterprise API
1616
---
1717

1818
With the APIs, you can automate many administrative tasks. Some examples include:
19-
* Perform changes to the {% data variables.enterprise.management_console %}. For more information, see
20-
{% ifversion management-console-manage-ghes-parity -%}
21-
"[AUTOTITLE](/rest/enterprise-admin/manage-ghes)."
22-
{%- else -%}
23-
"[AUTOTITLE](/rest/enterprise-admin/management-console)."
19+
20+
{%- ifversion management-console-manage-ghes-parity %}
21+
* Perform a configuration run to apply changes to {% data variables.enterprise.management_console %} settings. For more information, see "[AUTOTITLE](/rest/enterprise-admin/manage-ghes)."
2422
{%- endif %}
2523
* Configure LDAP sync. For more information, see "[AUTOTITLE](/rest/enterprise-admin/ldap)."
2624
* Collect statistics about your enterprise. For more information, see "[AUTOTITLE](/rest/enterprise-admin/admin-stats)."

content/rest/enterprise-admin/index.md

+5-21
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,7 @@ autogenerated: rest
4444

4545
## Endpoint URLs
4646

47-
These endpoints
48-
{% ifversion management-console-manage-ghes-parity -%}
49-
—except Manage GitHub Enterprise Server API—
50-
{%- else -%}
51-
—except Management Console API—
52-
{%- endif -%}
53-
are prefixed with the following URL:
47+
These endpoints{% ifversion ghes %}, except the Manage GitHub Enterprise Server API {% ifversion ghes < 3.15 %} and Management Console API{% endif %},{% endif %} are prefixed with the following URL:
5448

5549
```shell
5650
{% data variables.product.rest_url %}
@@ -61,15 +55,11 @@ When endpoints include `{enterprise}`, replace `{enterprise}` with the handle fo
6155
{% endif %}
6256

6357
{% ifversion ghes %}
64-
{% ifversion management-console-manage-ghes-parity -%}
65-
Manage GitHub Enterprise Server API
66-
{%- else -%}
67-
Management Console API
68-
{%- endif %}
69-
endpoints are only prefixed with a hostname:
58+
59+
Endpoints for the Manage GitHub Enterprise Server API{% ifversion ghes < 3.15 %} and Management Console API{% endif %} are only prefixed with a hostname and administration port:
7060

7161
```shell
72-
http(s)://HOSTNAME/
62+
http(s)://HOSTNAME:ADMINISTRATION-PORT/
7363
```
7464

7565
{% endif %}
@@ -81,13 +71,7 @@ Your {% data variables.product.product_name %} installation's API endpoints acce
8171

8272
OAuth tokens must have the `site_admin` [OAuth scope](/apps/oauth-apps/building-oauth-apps/scopes-for-oauth-apps#available-scopes) when used with these endpoints.
8373

84-
These endpoints are only accessible to authenticated {% data variables.product.product_name %} site administrators, except for the
85-
{% ifversion management-console-manage-ghes-parity -%}
86-
[AUTOTITLE](/rest/enterprise-admin/manage-ghes),
87-
{%- else -%}
88-
[AUTOTITLE](/rest/enterprise-admin/management-console),
89-
{%- endif %}
90-
which requires the [Management Console password](/admin/configuration/administering-your-instance-from-the-management-console).
74+
These endpoints are only accessible to authenticated {% data variables.product.product_name %} site administrators, except for endpoints of the [AUTOTITLE](/rest/enterprise-admin/manage-ghes) API{% ifversion ghes < 3.15 %} and [AUTOTITLE](/rest/enterprise-admin/management-console) API{% endif %}, which allow authentication as a Management Console user. See "[AUTOTITLE](/admin/configuration/administering-your-instance-from-the-management-console)."
9175

9276
{% data reusables.enterprise_management_console.api-deprecation %}
9377

content/rest/enterprise-admin/manage-ghes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ By default, the response includes information from about all configured nodes fo
5353
| Query parameter | Description |
5454
| :- | :- |
5555
| `uuid` | Unique identifier for the node. |
56-
| `cluster_role` | For nodes in a cluster, the roles that apply to the node. For more information, see "[AUTOTITLE)(/admin/enterprise-management/configuring-clustering/about-cluster-nodes)." |
56+
| `cluster_role` | For nodes in a cluster, the roles that apply to the node. For more information, see "[AUTOTITLE](/admin/enterprise-management/configuring-clustering/about-cluster-nodes)." |
5757

5858
You can specify multiple values for the query parameter by delimiting the values with a comma. For example, the following request uses curl to return any nodes with the `web-server` or `storage-server` role.
5959

src/landings/components/CategoryLanding.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ export const CategoryLanding = () => {
132132
/>
133133
</div>
134134
</div>
135-
<ul className="clearfix gutter-md-spacious">
135+
<ul className="clearfix d-flex flex-wrap gutter-md-spacious">
136136
{searchResults.map((item, index) => (
137-
<li key={index} className="col-md-4 col-sm-12 list-style-none float-left p-4">
137+
<li key={index} className="col-md-6 col-lg-4 col-sm-12 list-style-none p-4">
138138
<CookBookArticleCard
139139
title={item.title}
140140
description={item.intro!}

src/landings/components/CookBookArticleCard.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import {
1111
LogIcon,
1212
TerminalIcon,
1313
BookIcon,
14+
ShieldLockIcon,
15+
LockIcon,
1416
} from '@primer/octicons-react'
1517

1618
const Icons = {
@@ -25,6 +27,8 @@ const Icons = {
2527
log: LogIcon,
2628
terminal: TerminalIcon,
2729
book: BookIcon,
30+
'shield-lock': ShieldLockIcon,
31+
lock: LockIcon,
2832
}
2933

3034
type IconType = keyof typeof Icons

0 commit comments

Comments
 (0)