diff options
Diffstat (limited to 'api')
-rw-r--r-- | api/openapi.yaml | 10 | ||||
-rw-r--r-- | api/register-handlers.go | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/api/openapi.yaml b/api/openapi.yaml index 685bd4f..d8afb2f 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -441,13 +441,15 @@ components: items: type: string input: - type: object - additionalProperties: true - example: + anyOf: + - x-go-type: "interface{}" + - type: object + additionalProperties: true + example: user: alice action: read object: id123 - type: dog + type: dog required: - policyName - policyFilter diff --git a/api/register-handlers.go b/api/register-handlers.go index 49b953f..ab71afe 100644 --- a/api/register-handlers.go +++ b/api/register-handlers.go @@ -57,6 +57,8 @@ func RegisterHandlers() { dataHandler := http.HandlerFunc(data.DataHandler) http.Handle("/policy/pdpo/v1/data/", basicAuth(dataHandler)) + http.Handle("/policy/pdpo/v1/data", basicAuth(dataHandler)) + } // handles authentication |