ec72adb2a6
We send an email when user's account gets locked. Issue: https://github.com/storj/storj/issues/4967 Change-Id: I68beceda0ac09128755c0333dfa014bd5a186317
22 lines
841 B
Go
22 lines
841 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"
|
|
)
|