2022-02-24 12:31:36 -08:00
|
|
|
package constants
|
|
|
|
|
|
|
|
// https://github.com/opencontainers/distribution-spec/tree/main/extensions#extensions-api-for-distribution
|
|
|
|
const (
|
|
|
|
ExtCatalogPrefix = "/_catalog"
|
|
|
|
ExtOciDiscoverPrefix = "/_oci/ext/discover"
|
|
|
|
// zot specific extensions.
|
2023-05-20 07:22:51 +03:00
|
|
|
ExtPrefix = "/_zot/ext"
|
|
|
|
|
|
|
|
ExtSearch = "/search"
|
|
|
|
ExtSearchPrefix = ExtPrefix + ExtSearch
|
|
|
|
FullSearchPrefix = RoutePrefix + ExtSearchPrefix
|
|
|
|
|
|
|
|
ExtMgmt = "/mgmt"
|
|
|
|
ExtMgmtPrefix = ExtPrefix + ExtMgmt
|
|
|
|
FullMgmtPrefix = RoutePrefix + ExtMgmtPrefix
|
|
|
|
|
|
|
|
ExtUserPreferences = "/userprefs"
|
|
|
|
ExtUserPreferencesPrefix = ExtPrefix + ExtUserPreferences
|
2023-04-24 21:13:15 +03:00
|
|
|
FullUserPreferencesPrefix = RoutePrefix + ExtUserPreferencesPrefix
|
2022-02-24 12:31:36 -08:00
|
|
|
)
|