You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only show Followers that current user can access (go-gitea#20220)
Users who are following or being followed by a user should only be
displayed if the viewing user can see them.
Signed-off-by: Andrew Thornton <[email protected]>
;; Number of items that are displayed in home feed
1098
1084
;FEED_PAGING_NUM = 20
1099
1085
;;
1086
+
;; Number of items that are displayed in a single subsitemap
1087
+
;SITEMAP_PAGING_NUM = 20
1088
+
;;
1100
1089
;; Number of maximum commits displayed in commit graph.
1101
1090
;GRAPH_MAX_COMMIT_NUM = 100
1102
1091
;;
@@ -1687,7 +1676,7 @@ PATH =
1687
1676
;ENABLED = true
1688
1677
;;
1689
1678
;; Comma-separated list of allowed file extensions (`.zip`), mime types (`text/plain`) or wildcard type (`image/*`, `audio/*`, `video/*`). Empty value or `*/*` allows all types.
;NAMES = English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,Français,Nederlands,Latviešu,Русский,Українська,日本語,Español,Português do Brasil,Português de Portugal,Polski,Български,Italiano,Suomi,Türkçe,Čeština,Српски,Svenska,한국어,Ελληνικά,فارسی,Magyar nyelv,Bahasa Indonesia,മലയാളം
Copy file name to clipboardExpand all lines: docs/content/doc/advanced/config-cheat-sheet.en-us.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,6 +174,7 @@ The following configuration set `Content-Type: application/vnd.android.package-a
174
174
-`MEMBERS_PAGING_NUM`: **20**: Number of members that are shown in organization members.
175
175
-`FEED_MAX_COMMIT_NUM`: **5**: Number of maximum commits shown in one activity feed.
176
176
-`FEED_PAGING_NUM`: **20**: Number of items that are displayed in home feed.
177
+
-`SITEMAP_PAGING_NUM`: **20**: Number of items that are displayed in a single subsitemap.
177
178
-`GRAPH_MAX_COMMIT_NUM`: **100**: Number of maximum commits shown in the commit graph.
178
179
-`CODE_COMMENT_LINES`: **4**: Number of line of codes shown for a code comment.
179
180
-`DEFAULT_THEME`: **auto**: \[auto, gitea, arc-green\]: Set the default theme for the Gitea install.
@@ -741,7 +742,7 @@ Default templates for project boards:
741
742
## Issue and pull request attachments (`attachment`)
742
743
743
744
-`ENABLED`: **true**: Whether issue and pull request attachments are enabled.
744
-
-`ALLOWED_TYPES`: **.docx,.gif,.gz,.jpeg,.jpg,mp4,.log,.pdf,.png,.pptx,.txt,.xlsx,.zip**: Comma-separated list of allowed file extensions (`.zip`), mime types (`text/plain`) or wildcard type (`image/*`, `audio/*`, `video/*`). Empty value or `*/*` allows all types.
745
+
-`ALLOWED_TYPES`: **.csv,.docx,.fodg,.fodp,.fods,.fodt,.gif,.gz,.jpeg,.jpg,.log,.md,.mov,.mp4,.odf,.odg,.odp,.ods,.odt,.pdf,.png,.pptx,.svg,.tgz,.txt,.webm,.xls,.xlsx,.zip**: Comma-separated list of allowed file extensions (`.zip`), mime types (`text/plain`) or wildcard type (`image/*`, `audio/*`, `video/*`). Empty value or `*/*` allows all types.
745
746
-`MAX_SIZE`: **4**: Maximum size (MB).
746
747
-`MAX_FILES`: **5**: Maximum number of attachments that can be uploaded at once.
747
748
-`STORAGE_TYPE`: **local**: Storage type for attachments, `local` for local disk or `minio` for s3 compatible object storage service, default is `local` or other name defined with `[storage.xxx]`
@@ -998,13 +999,10 @@ Default templates for project boards:
List of locales shown in language selector. The first locale will be used as the default if user browser's language doesn't match any locale in the list.
1003
1004
-`NAMES`: **English,简体中文,繁體中文(香港),繁體中文(台灣),Deutsch,Français,Nederlands,Latviešu,Русский,Українська,日本語,Español,Português do Brasil,Português de Portugal,Polski,Български,Italiano,Suomi,Türkçe,Čeština,Српски,Svenska,한국어,Ελληνικά,فارسی,Magyar nyelv,Bahasa Indonesia,മലയാളം**: Visible names corresponding to the locales
1004
1005
1005
-
## U2F (`U2F`) **DEPRECATED**
1006
-
-`APP_ID`: **`ROOT_URL`**: Declares the facet of the application which is used for authentication of previously registered U2F keys. Requires HTTPS.
1007
-
1008
1006
## Markup (`markup`)
1009
1007
1010
1008
-`MERMAID_MAX_SOURCE_CHARACTERS`: **5000**: Set the maximum size of a Mermaid source. (Set to -1 to disable)
Copy file name to clipboardExpand all lines: docs/content/doc/developers/oauth2-provider.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,13 +41,13 @@ To use the Authorization Code Grant as a third party application it is required
41
41
42
42
## Scopes
43
43
44
-
Currently Gitea does not support scopes (see [#4300](https://github.com/go-gitea/gitea/issues/4300)) and all third party applications will be granted access to all resources of the user and his/her organizations.
44
+
Currently Gitea does not support scopes (see [#4300](https://github.com/go-gitea/gitea/issues/4300)) and all third party applications will be granted access to all resources of the user and their organizations.
45
45
46
46
## Example
47
47
48
48
**Note:** This example does not use PKCE.
49
49
50
-
1. Redirect to user to the authorization endpoint in order to get his/her consent for accessing the resources:
50
+
1. Redirect to user to the authorization endpoint in order to get their consent for accessing the resources:
0 commit comments