diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-16 11:26:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 11:26:32 +0100 |
commit | d9f84692c13406f7e4e22d4bb16db4e8a7d086ab (patch) | |
tree | da6d920ab48dd4ca5a8da8302d13ec33b6cb5ecc /pkg/domain | |
parent | 72ddf2fb96332ea70cb7fa126410ab6b6ed44941 (diff) | |
parent | 955aaccc55218cd0022a1180df4c15bb27674a8f (diff) | |
download | podman-d9f84692c13406f7e4e22d4bb16db4e8a7d086ab.tar.gz podman-d9f84692c13406f7e4e22d4bb16db4e8a7d086ab.tar.bz2 podman-d9f84692c13406f7e4e22d4bb16db4e8a7d086ab.zip |
Merge pull request #9589 from troyready/add_compat_auth_endpoint
add /auth for docker compatibility
Diffstat (limited to 'pkg/domain')
-rw-r--r-- | pkg/domain/entities/system.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/domain/entities/system.go b/pkg/domain/entities/system.go index a1cfb4481..4b8383613 100644 --- a/pkg/domain/entities/system.go +++ b/pkg/domain/entities/system.go @@ -107,3 +107,14 @@ type ComponentVersion struct { type ListRegistriesReport struct { Registries []string } + +// swagger:model AuthConfig +type AuthConfig struct { + types.AuthConfig +} + +// AuthReport describes the response for authentication check +type AuthReport struct { + IdentityToken string + Status string +} |