@@ -573,6 +573,9 @@ PATH =
573
573
; ;
574
574
; ; Respond to pushes to a non-default branch with a URL for creating a Pull Request (if the repository has them enabled)
575
575
; 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
576
579
577
580
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
578
581
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -654,9 +657,18 @@ PATH =
654
657
; DEFAULT_USER_IS_RESTRICTED = false
655
658
; ;
656
659
; ; 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
660
672
; DEFAULT_ORG_VISIBILITY = public
661
673
; ;
662
674
; ; Default value for DefaultOrgMemberVisible
@@ -708,6 +720,8 @@ PATH =
708
720
; ;
709
721
; ; Minimum amount of time a user must exist before comments are kept when the user is deleted.
710
722
; USER_DELETE_WITH_COMMENTS_MAX_TIME = 0
723
+ ; ; Valid site url schemes for user profiles
724
+ ; VALID_SITE_URL_SCHEMES=http,https
711
725
712
726
713
727
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1021,11 +1035,16 @@ PATH =
1021
1035
; ; All available themes. Allow users select personalized themes regardless of the value of `DEFAULT_THEME`.
1022
1036
; THEMES = gitea,arc-green
1023
1037
; ;
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
1027
1041
; REACTIONS = +1, -1, laugh, hooray, confused, heart, rocket, eyes
1028
1042
; ;
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
+ ; ;
1029
1048
; ; Whether the full name of the users should be shown where possible. If the full name isn't set, the username will be used.
1030
1049
; DEFAULT_SHOW_FULL_NAME = false
1031
1050
; ;
0 commit comments