diff --git a/changelog/unreleased/add-gocdb-apikey.md b/changelog/unreleased/add-gocdb-apikey.md new file mode 100644 index 0000000000..a6570246b3 --- /dev/null +++ b/changelog/unreleased/add-gocdb-apikey.md @@ -0,0 +1,5 @@ +Enhancement: Add API key to Mentix GOCDB connector + +The PI (programmatic interface) of the GOCDB will soon require an API key; this PR adds the ability to configure this key in Mentix. + +https://github.com/cs3org/reva/pull/1834 diff --git a/changelog/unreleased/fix-siteacc.md b/changelog/unreleased/fix-siteacc.md new file mode 100644 index 0000000000..ad15c4fb1c --- /dev/null +++ b/changelog/unreleased/fix-siteacc.md @@ -0,0 +1,5 @@ +Bugfix: Site accounts contact form + +This PR fixes a minor bug in the site accounts service that prevented the contact form from working. + +https://github.com/cs3org/reva/pull/2546 diff --git a/pkg/siteacc/endpoints.go b/pkg/siteacc/endpoints.go index 23fd36197c..50c4fd5419 100644 --- a/pkg/siteacc/endpoints.go +++ b/pkg/siteacc/endpoints.go @@ -82,8 +82,8 @@ func getEndpoints() []endpoint { // Login endpoints {config.EndpointLogin, callMethodEndpoint, createMethodCallbacks(nil, handleLogin), true}, {config.EndpointLogout, callMethodEndpoint, createMethodCallbacks(handleLogout, nil), true}, - {config.EndpointResetPassword, callMethodEndpoint, createMethodCallbacks(nil, handleResetPassword), false}, - {config.EndpointContact, callMethodEndpoint, createMethodCallbacks(nil, handleContact), false}, + {config.EndpointResetPassword, callMethodEndpoint, createMethodCallbacks(nil, handleResetPassword), true}, + {config.EndpointContact, callMethodEndpoint, createMethodCallbacks(nil, handleContact), true}, // Authentication endpoints {config.EndpointVerifyUserToken, callMethodEndpoint, createMethodCallbacks(handleVerifyUserToken, nil), true}, // Authorization endpoints