From e9fd430d01069fd461136b67173dd7632a3c97ba Mon Sep 17 00:00:00 2001 From: Wilfred Asomani Date: Thu, 9 Nov 2023 09:45:48 +0000 Subject: [PATCH] storj: remove instances of DCS and OSP This change replaces with "Storj" all instances of "Storj DCS" or "Storj OSP". Issues: storj/storj-private#479 #5069 and #5839 Change-Id: I78d13f2abd8bde5d2cb42d8006016ee87130a566 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- docs/testplan/access-grants-page-testplan.md | 4 ++-- satellite/payments/stripe/service.go | 2 +- storagenode/contact/service.go | 2 +- web/satellite/index-vuetify.html | 2 +- .../src/components/modals/AddTokenFundsModal.vue | 2 +- .../components/onboardingTour/steps/OverviewStep.vue | 11 +---------- web/satellite/src/views/AuthorizeArea.vue | 2 +- web/satellite/static/emails/AccountAlreadyExists.html | 2 +- web/satellite/static/emails/ExistingUserInvite.html | 2 +- web/satellite/static/emails/UnverifiedUserInvite.html | 2 +- 11 files changed, 12 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 59e7ad37b..0d8e6ba36 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: "\U0001F41B Bug report" -about: Bugs encountered while using Storj DCS or running a storage node. +about: Bugs encountered while using Storj or running a storage node. title: '' labels: Bug assignees: '' diff --git a/docs/testplan/access-grants-page-testplan.md b/docs/testplan/access-grants-page-testplan.md index 7b8bf1a22..04f5f0b89 100644 --- a/docs/testplan/access-grants-page-testplan.md +++ b/docs/testplan/access-grants-page-testplan.md @@ -11,7 +11,7 @@ This testplan is going to cover the Access Grants Page. This page lists access g | Test Scenario | Test Case | Description | Comments | |---------------------------------|---------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------| -| Access Grant Management Page UI | Click on the Access Management Section of Storj DCS Sidebar | While the sidebar is present, if the user clicks on the access management section of the sidebar then the user should be redirected to the access grant management page | | +| Access Grant Management Page UI | Click on the Access Management Section of Storj Sidebar | While the sidebar is present, if the user clicks on the access management section of the sidebar then the user should be redirected to the access grant management page | | | | Confirm Access Grant Management Page | While the user is in their access grant management page, the user should be able to see the Access Management Header and a header named My Access Keys with a list of access keys if the user has created any, a button for a new access grant and a search bar to search for any access grants | | | | Access Grant More Info Button | Under the access management header, there is a more info button that leads to an explanation of access grants, so if it is clicked user should be redirected to storj-labs access grants concepts page | | | | Click More Info Button on Access Grant with Limited Permissions | When a user clicks on the more info button for said access grant with limited permissions, it should show the stated permissions | | @@ -20,7 +20,7 @@ This testplan is going to cover the Access Grants Page. This page lists access g | | Access Grants Shortcuts- Learn More Button | If user clicks on learn more button on the access grants shortcuts, then user should be redirected to Storj-labs page with more information about access grants | | | | API Keys Shortcuts- Create API Keys Button | If user clicks on create API keys button on the API keys shortcut, then user should be presented with a modal allowing user to create API keys (at the end user should also be able to copy said API key and Satellite Address or save it in a text file) | | | | API Keys Shortcuts- Learn More Button | If user clicks on learn more button on the API keys shortcut, then user should be redirected to Storj-labs page with more information about API keys | | -| | S3 Credentials Shortcuts- Create S3 Credentials Button | If user clicks on create S3 credentials button on the S3 credentials shortcuts, then user should be presented with a modal to create S3 credentials to switch backend of an app using S3 compatible object storage to Storj DCS (at the end user should also be able to copy said S3 credentials; secret key, access key and endpoint on clipboard or download as a text file) | | +| | S3 Credentials Shortcuts- Create S3 Credentials Button | If user clicks on create S3 credentials button on the S3 credentials shortcuts, then user should be presented with a modal to create S3 credentials to switch backend of an app using S3 compatible object storage to Storj (at the end user should also be able to copy said S3 credentials; secret key, access key and endpoint on clipboard or download as a text file) | | | | S3 Credentials Shortcuts- Learn More Button | If user clicks on learn more button on the S3 credentials shortcut, then user should be redirected to Storj-labs page with more information on S3 credentials | | | | First Visit Check for About Access Grants | If user visits access management page for the first time, the user should see an about access grant message explaining what access grants are (this message should also be dismissible) | | | | Check for About Access Grants after First Visit | If user visits access management page again after their first time ( and presses dismiss), then for every subsequent visit to this page the user should not be presented with this access grant message | | diff --git a/satellite/payments/stripe/service.go b/satellite/payments/stripe/service.go index e9ae6bdc7..58a9df087 100644 --- a/satellite/payments/stripe/service.go +++ b/satellite/payments/stripe/service.go @@ -798,7 +798,7 @@ func (service *Service) createInvoice(ctx context.Context, cusID string, period return nil, nil } - description := fmt.Sprintf("Storj DCS Cloud Storage for %s %d", period.Month(), period.Year()) + description := fmt.Sprintf("Storj Cloud Storage for %s %d", period.Month(), period.Year()) stripeInvoice, err = service.stripeClient.Invoices().New( &stripe.InvoiceParams{ Params: stripe.Params{Context: ctx}, diff --git a/storagenode/contact/service.go b/storagenode/contact/service.go index 000a144d0..af456c69f 100644 --- a/storagenode/contact/service.go +++ b/storagenode/contact/service.go @@ -227,7 +227,7 @@ func (service *Service) RequestPingMeQUIC(ctx context.Context) (stats *QUICStats } // Shuffle the satellites - // All the Storagenodes get a default list of trusted satellites (The Storj DCS ones) and + // All the Storagenodes get a default list of trusted satellites (The Storj ones) and // most of the SN operators don't change the list, hence if it always starts with // the same satellite we are going to put always more pressure on the first trusted // satellite on the list. So we iterate over the list of trusted satellites in a diff --git a/web/satellite/index-vuetify.html b/web/satellite/index-vuetify.html index a4e1c5c17..6b93be87e 100644 --- a/web/satellite/index-vuetify.html +++ b/web/satellite/index-vuetify.html @@ -5,7 +5,7 @@ - Storj DCS + Storj
diff --git a/web/satellite/src/components/modals/AddTokenFundsModal.vue b/web/satellite/src/components/modals/AddTokenFundsModal.vue index 27f552fa9..dbfc8a627 100644 --- a/web/satellite/src/components/modals/AddTokenFundsModal.vue +++ b/web/satellite/src/components/modals/AddTokenFundsModal.vue @@ -9,7 +9,7 @@ Add STORJ Tokens