fix(public-share): basic auth password prefix

fix wrong basic auth password prefix
This commit is contained in:
Florian Schade
2021-10-20 14:34:11 +02:00
parent 33649efc75
commit b416763599
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import (
const (
headerRevaAccessToken = "x-access-token"
headerShareToken = "public-token"
basicAuthPasswordPrefix = "basic|"
basicAuthPasswordPrefix = "password|"
authenticationType = "publicshares"
)