mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
639b428cf4
Expose the repository flags feature over the API, so the flags can be managed by a site administrator without using the web API. Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu> (cherry picked from commitbac9f0225d
) (cherry picked from commite7f5c1ba14
) (cherry picked from commit95d9fe19cf
) (cherry picked from commit7fc51991e4
)
9 lines
265 B
Go
9 lines
265 B
Go
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package structs
|
|
|
|
// ReplaceFlagsOption options when replacing the flags of a repository
|
|
type ReplaceFlagsOption struct {
|
|
Flags []string `json:"flags"`
|
|
}
|