diff --git a/cmd/frontend/internal/httpapi/httpapi.go b/cmd/frontend/internal/httpapi/httpapi.go index 8fe24eb789b..4b8ada1429a 100644 --- a/cmd/frontend/internal/httpapi/httpapi.go +++ b/cmd/frontend/internal/httpapi/httpapi.go @@ -267,7 +267,7 @@ func NewHandler( enterpriseportal.SAMSConfig{ ClientID: dotcomConf.SamsClientID, ClientSecret: dotcomConf.SamsClientSecret, - Scopes: enterpriseportal.ReadScopes(), // WIP: enable write access to prod later + Scopes: append(enterpriseportal.ReadScopes(), enterpriseportal.WriteScopes()...), ConnConfig: samssdk.ConnConfig{ ExternalURL: dotcomConf.SamsServer, },