-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix various trivial problems #32861
Fix various trivial problems #32861
Conversation
No need to wait for this if you'd like to release 1.23 |
f820e4b
to
b6504ea
Compare
@@ -12,6 +12,9 @@ import ( | |||
"code.gitea.io/gitea/modules/setting" | |||
) | |||
|
|||
// CanUserForkBetweenOwners returns true if user can fork between owners. | |||
// By default, a user can fork a repository from another owner, but not from themselves. | |||
// Many users really like to fork their own repositories, so add an experimental setting to allow this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Many users really like to fork their own repositories, so add an experimental setting to allow this. | |
// TODO: Many users really like to fork their own repositories, so add an experimental setting to allow this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But it is describing the fact, it is not a TODO
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait, we have this setting already?
Because as far as I'm aware, we have no such setting yet.
And without the TODO, it sounds like the setting exists already…
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Allow to fork repository into the same owner #32819
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: delvh <dev.lh@web.de>
Should this be backported to release/v1.23? |
Yes if you have tagged. |
1. add/improve comments to help future readers could understand the problem more easily. 2. add an error log to LDAP with username fallback 3. use `or` instead of `Iif` for "repo/branch_dropdown" (`Iif` was a mistake, but it doesn't really affect the UI) 4. add `tw-font-mono` style to container digest to match dockerhub 5. fix a bug in RepoBranchTagSelector: the form is not updated when there is no click to an item --------- Co-authored-by: delvh <dev.lh@web.de>
Backport 1.23 #32868 |
or
instead ofIif
for "repo/branch_dropdown" (Iif
was a mistake, but it doesn't really affect the UI)tw-font-mono
style to container digest to match dockerhub