
Add UI to the quota feature to see what quotas applies to you and if you're exceeding any quota, it's designed to be a general size overview although it's exclusively filled with quota features for now. There's also no UI to see what item is actually taking in the most size. Purely an quota overview. Screenshots:   With inspiration from concept by 0ko:  Co-authored-by: Otto Richter <git@otto.splvs.net> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6602 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
20 lines
584 B
Go
20 lines
584 B
Go
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
package setting
|
|
|
|
import (
|
|
"code.gitea.io/gitea/modules/base"
|
|
"code.gitea.io/gitea/routers/web/shared"
|
|
"code.gitea.io/gitea/services/context"
|
|
)
|
|
|
|
const (
|
|
tplSettingsStorageOverview base.TplName = "org/settings/storage_overview"
|
|
)
|
|
|
|
// StorageOverview render a size overview of the organization, as well as relevant
|
|
// quota limits of the instance.
|
|
func StorageOverview(ctx *context.Context) {
|
|
shared.StorageOverview(ctx, ctx.Org.Organization.ID, tplSettingsStorageOverview)
|
|
}
|