8d1a765fd6
This partially reverts commit 516241e406
.
Endpoints are added to the backend, as there are some customers who may
use these endpoints, even though they are no longer necessary for the
satellite UI.
Change-Id: I52a99912d9eacf269fbb2ddca603e53c4af6d6bf
24 lines
945 B
Go
24 lines
945 B
Go
// Copyright (C) 2022 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package consoleql
|
|
|
|
const (
|
|
// ActivationPath is key for path which handles account activation.
|
|
ActivationPath = "activationPath"
|
|
// PasswordRecoveryPath is key for path which handles password recovery.
|
|
PasswordRecoveryPath = "passwordRecoveryPath"
|
|
// CancelPasswordRecoveryPath is key for path which handles let us know sequence.
|
|
CancelPasswordRecoveryPath = "cancelPasswordRecoveryPath"
|
|
// SignInPath is key for sign in server route.
|
|
SignInPath = "signInPath"
|
|
// LetUsKnowURL is key to store let us know URL.
|
|
LetUsKnowURL = "letUsKnowURL"
|
|
// ContactInfoURL is a key to store contact info URL.
|
|
ContactInfoURL = "contactInfoURL"
|
|
// TermsAndConditionsURL is a key to store terms and conditions URL.
|
|
TermsAndConditionsURL = "termsAndConditionsURL"
|
|
// SatelliteRegion is a key to store the satellite's region/name.
|
|
SatelliteRegion = "satelliteRegion"
|
|
)
|