2022-02-24 15:31:36 -05: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-19 23:22:51 -05: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 13:13:15 -05:00
|
|
|
FullUserPreferencesPrefix = RoutePrefix + ExtUserPreferencesPrefix
|
2022-02-24 15:31:36 -05:00
|
|
|
)
|