@@ -573,6 +573,9 @@ PATH =
573573; ;
574574; ; Respond to pushes to a non-default branch with a URL for creating a Pull Request (if the repository has them enabled)
575575; PULL_REQUEST_PUSH_MESSAGE = true
576+ ; ;
577+ ; ; (Go-Git only) Don't cache objects greater than this in memory. (Set to 0 to disable.)
578+ ; LARGE_OBJECT_THRESHOLD = 1048576
576579
577580; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
578581; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -654,9 +657,18 @@ PATH =
654657; DEFAULT_USER_IS_RESTRICTED = false
655658; ;
656659; ; Either "public", "limited" or "private", default is "public"
657- ; ; Limited is for signed user only
658- ; ; Private is only for member of the organization
659- ; ; Public is for everyone
660+ ; ; Limited is for users visible only to signed users
661+ ; ; Private is for users visible only to members of their organizations
662+ ; ; Public is for users visible for everyone
663+ ; DEFAULT_USER_VISIBILITY = public
664+ ; ;
665+ ; ; Set whitch visibibilty modes a user can have
666+ ; ALLOWED_USER_VISIBILITY_MODES = public,limited,private
667+ ; ;
668+ ; ; Either "public", "limited" or "private", default is "public"
669+ ; ; Limited is for organizations visible only to signed users
670+ ; ; Private is for organizations visible only to members of the organization
671+ ; ; Public is for organizations visible to everyone
660672; DEFAULT_ORG_VISIBILITY = public
661673; ;
662674; ; Default value for DefaultOrgMemberVisible
@@ -708,6 +720,8 @@ PATH =
708720; ;
709721; ; Minimum amount of time a user must exist before comments are kept when the user is deleted.
710722; USER_DELETE_WITH_COMMENTS_MAX_TIME = 0
723+ ; ; Valid site url schemes for user profiles
724+ ; VALID_SITE_URL_SCHEMES=http,https
711725
712726
713727; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1021,11 +1035,16 @@ PATH =
10211035; ; All available themes. Allow users select personalized themes regardless of the value of `DEFAULT_THEME`.
10221036; THEMES = gitea,arc-green
10231037; ;
1024- ; ;All available reactions users can choose on issues/prs and comments.
1025- ; ;Values can be emoji alias (:smile:) or a unicode emoji.
1026- ; ;For custom reactions, add a tightly cropped square image to public/emoji/ img/reaction_name.png
1038+ ; ; All available reactions users can choose on issues/prs and comments.
1039+ ; ; Values can be emoji alias (:smile:) or a unicode emoji.
1040+ ; ; For custom reactions, add a tightly cropped square image to public/img/emoji /reaction_name.png
10271041; REACTIONS = +1, -1, laugh, hooray, confused, heart, rocket, eyes
10281042; ;
1043+ ; ; Additional Emojis not defined in the utf8 standard
1044+ ; ; By default we support gitea (:gitea:), to add more copy them to public/img/emoji/emoji_name.png and add it to this config.
1045+ ; ; Dont mistake it for Reactions.
1046+ ; CUSTOM_EMOJIS = gitea, codeberg, gitlab, git, github, gogs
1047+ ; ;
10291048; ; Whether the full name of the users should be shown where possible. If the full name isn't set, the username will be used.
10301049; DEFAULT_SHOW_FULL_NAME = false
10311050; ;
0 commit comments