mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
Automatically select the org when click create repo from org dashboard (#24325)
 In org dashboard, the create repo link will be `repo/create?org={orgId}`
This commit is contained in:
@@ -44,8 +44,10 @@ data.teamId = {{.Team.ID}};
|
||||
{{if not .ContextUser.IsOrganization}}
|
||||
data.organizations = [{{range .Orgs}}{'name': {{.Name}}, 'num_repos': {{.NumRepos}}},{{end}}];
|
||||
data.isOrganization = false;
|
||||
data.organizationsTotalCount = {{.UserOrgsCount}}
|
||||
data.canCreateOrganization = {{.SignedUser.CanCreateOrganization}}
|
||||
data.organizationsTotalCount = {{.UserOrgsCount}};
|
||||
data.canCreateOrganization = {{.SignedUser.CanCreateOrganization}};
|
||||
{{else}}
|
||||
data.organizationId = {{.ContextUser.ID}};
|
||||
{{end}}
|
||||
|
||||
window.config.pageData.dashboardRepoList = data;
|
||||
|
Reference in New Issue
Block a user