Skip to content

Commit

Permalink
feat: add account-sharing page (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta authored Aug 19, 2024
1 parent 4d00d47 commit 8d6b050
Show file tree
Hide file tree
Showing 11 changed files with 183 additions and 43 deletions.
71 changes: 71 additions & 0 deletions docs/account-sharing/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
---
sidebar_position: 1
sidebar_label: Account Sharing
title: Account Sharing
description: Learn how to share your Momento account with other users.
pagination_next: null
hide_title: true
keywords:
- account sharing
- sharing
- collaboration
- team
- organization
- resources
- members
- accounts
- operators
- role
---


# What is Account Sharing?
Momento's Account Sharing feature enables you to collaborate and manage your resources with ease. By sharing your account, you can grant other users access to your topics, caches, and other resources.

## How to Use Account Sharing
To get started with Account Sharing, follow these steps:

### **Add an Operator**
- Log in to the [Momento Console](https://console.gomomento.com).
- In the upper-right corner, click on your account info dropdown and select **Manage Account**.

<img src="/img/account-sharing/manage-account.png" width="60%"/>
- Click on the **Add Operator** button.

<img src="/img/account-sharing/add-operator.png" width="60%"/>
- Enter the email address of the user you wish to add. Please ensure that the user has an existing Momento account, meaning they must have signed into the Momento console at least once using that email address.

<img src="/img/account-sharing/enter-email-address.png" width="60%"/>
- Click **Add** to add the user to your account.

<img src="/img/account-sharing/confirm-add-operator.png" width="60%"/>

### **Remove an Operator**
- Log in to the [Momento Console](https://console.gomomento.com).
- In the upper-right corner, click on your account info dropdown and select **Manage Account**.

<img src="/img/account-sharing/manage-account.png" width="60%"/>
- Find the user you want to remove and click on the **Remove** button. You cannot remove yourself from the account if you are the account owner.

<img src="/img/account-sharing/remove-operator.png" width="60%"/>
- Confirm the removal by clicking **Remove** in the dialog box.

<img src="/img/account-sharing/confirm-remove-operator.png" width="60%"/>

### **Switch Accounts**
- If you are added to multiple accounts, you can switch between accounts inside the Momento Console.
- Log in to the [Momento Console](https://console.gomomento.com).
- In the upper-right corner, click on your account info dropdown and select **Switch Account**.

<img src="/img/account-sharing/switch-account.png" width="60%"/>
- Select the account you want to switch to from the list.

<img src="/img/account-sharing/select-account.png" width="60%"/>

## Important Notes
- **Existing Momento Account**: You can only add operators who have an existing Momento account and have signed into the Momento console at least once using the email address you are adding.
- **Operator Limit**: You can add up to 3 operators to your account. If you reach this limit, you will need to remove an existing operator before adding a new one, or you can also request a higher limit by contacting Momento at [email protected].
- **Full Access**: Operators have full access to the account's resources, including topics, caches, and other resources. They can perform actions like creating, updating, and deleting resources.
- **Removing Operators**: Any operator can remove other operators from the account. However, the account owner cannot be removed. If you are not the account owner, you can remove yourself from the account.
- **Adding Operators**: Any operator can add other operators to the account. To add an operator to your account, you need to know the email address associated with the user's Momento account.
- **Adding Another Owner**: To add another owner to your account, you need to contact Momento at [email protected].
36 changes: 36 additions & 0 deletions src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,39 @@
.fadeIn {
opacity: 1;
}

.highlightedSection {
background-color: #f4f8fc;
border-left: 5px solid #25c2a0;
padding: 20px;
margin: 1.5em 2em 0;
border-radius: 8px;
}

.highlightedTitle {
color: #25c2a0;
font-size: 1.5rem;
font-weight: bold;
}

.highlightedDescription {
font-size: 1.125rem;
margin-bottom: 10px;
}

.learnMoreLink {
color: #25c2a0;
text-decoration: none;
font-weight: bold;
display: inline-block;
padding: 8px 12px;
border: 2px solid #25c2a0;
border-radius: 4px;
transition: background-color 0.3s, color 0.3s;
}

.learnMoreLink:hover {
background-color: #25c2a0;
color: white;
}

119 changes: 76 additions & 43 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,46 +43,55 @@ export default function Home(): JSX.Element {
<main className={styles.content}>
<img className={styles.headerBackground} src="/img/acorn-grid-background.svg" alt={"acorn-grid"}/>
<div className={styles.contentContainer}>
<RotatingHeader />
<RotatingHeader/>
<div className={styles.desktopOnly}>
<div className={styles.columns}>
<div>
<h2>Cache</h2>
<ul className={styles.columnList}>
<li><a href="/cache/getting-started"><Translate id="gettingStarted">Getting started</Translate></a></li>
<li><a href="/cache/develop/api-reference"><Translate id="apiReference">API reference</Translate></a></li>
<li><a href="/cache/integrations/redis-client-compatibility"><Translate id="dropInReplacementsForRedis">Drop-in replacements for Redis</Translate></a></li>
<li><a href="/cache/develop/guides/working-with-files-cache"><Translate id="howToCacheFiles">How to cache files</Translate></a></li>
<li><a href="/cache/getting-started"><Translate id="gettingStarted">Getting started</Translate></a>
</li>
<li><a href="/cache/develop/api-reference"><Translate id="apiReference">API reference</Translate></a>
</li>
<li><a href="/cache/integrations/redis-client-compatibility"><Translate
id="dropInReplacementsForRedis">Drop-in replacements for Redis</Translate></a></li>
<li><a href="/cache/develop/guides/working-with-files-cache"><Translate id="howToCacheFiles">How to
cache files</Translate></a></li>
</ul>
</div>
<div>
<h2>Topics</h2>
<ul className={styles.columnList}>
<li><a href="/topics"><Translate id="aboutOurServerlessEventBus">About our serverless event bus</Translate></a></li>
<li><a href="/topics/integrations/lambda-handler"><Translate id="integrateWithAmazonEventBridge">Integrate with Amazon EventBridge</Translate></a></li>
<li><a href="/topics"><Translate id="aboutOurServerlessEventBus">About our serverless event
bus</Translate></a></li>
<li><a href="/topics/integrations/lambda-handler"><Translate id="integrateWithAmazonEventBridge">Integrate
with Amazon EventBridge</Translate></a></li>
<li><a href="/topics/webhooks"><Translate id="webhooksOverview">Webhooks overview</Translate></a></li>
<li>

<a href="https://www.gomomento.com/blog/how-to-create-a-slack-workflow-with-webhooks-in-momento-topics" target='_blank'>
<a href="https://www.gomomento.com/blog/how-to-create-a-slack-workflow-with-webhooks-in-momento-topics"
target='_blank'>
<div className={styles.openInNew}>
<span><Translate id="publishMessagesToSlack">Publish messages to Slack</Translate></span>
<IoOpenOutline />
<span><Translate id="publishMessagesToSlack">Publish messages to Slack</Translate></span>
<IoOpenOutline/>
</div>
</a>
</li>
</ul>
</div>
<div>
<h2><Translate id="forDevelopers">For developers</Translate></h2>
<h2><Translate id="forDevelopers">For developers</Translate></h2>
<ul className={styles.columnList}>
<li><a href="/sdks"><Translate id="availableSDKs">Available SDKs</Translate></a></li>
<li><a href="/cache/develop/authentication"><Translate id="authenticationAndAccessControl">Authentication and access control</Translate></a></li>
<li><a href="/cache/develop/basics/error-handling-production-readiness"><Translate id="properlyHandlingErrorsInMomento">Properly handling errors in Momento</Translate></a></li>
<li><a href="/cache/develop/authentication"><Translate id="authenticationAndAccessControl">Authentication
and access control</Translate></a></li>
<li><a href="/cache/develop/basics/error-handling-production-readiness"><Translate
id="properlyHandlingErrorsInMomento">Properly handling errors in Momento</Translate></a></li>
<li>
<a href="https://aws.amazon.com/marketplace/pp/prodview-tntv64zqgaqm2" target="_blank">
<div className={styles.openInNew}>
<span><Translate id="momentoOnAWSMarketplace">Momento on AWS Marketplace</Translate></span>
<IoOpenOutline />
<IoOpenOutline/>
</div>
</a>
</li>
Expand All @@ -93,64 +102,88 @@ export default function Home(): JSX.Element {
<div className={styles.section}>
<h2 className={styles.sectionTitle}><Translate id="Overview">Overview</Translate></h2>
<p>
<Translate id="momentoSimplifiesCloudArchitecture">Momento simplifies cloud architecture and automates resource management so developers can build from zero to global scale without distractions.
With our flagship </Translate><b>Cache</b> <Translate id="and">and</Translate> <b>Topics</b> <Translate id="servicesMomentoProvidesDevelopers">services, Momento provides developers the building blocks they need to focus on the thing that matters
<Translate id="momentoSimplifiesCloudArchitecture">Momento simplifies cloud architecture and automates
resource management so developers can build from zero to global scale without distractions.
With our flagship </Translate><b>Cache</b> <Translate id="and">and</Translate> <b>Topics</b> <Translate
id="servicesMomentoProvidesDevelopers">services, Momento provides developers the building blocks they
need to focus on the thing that matters
most: </Translate><i><Translate id="yourBusinessProblem">your business problem</Translate></i>.
</p>
<div className={styles.columns}>
<div className={styles.subsectionDetail}>
<h2 className={styles.subsectionTitle}><Translate id="ItsAbout">It's about </Translate><i><Translate id="developerProductivity">developer productivity</Translate></i></h2>
<h2 className={styles.subsectionTitle}><Translate id="ItsAbout">It's about </Translate><i><Translate
id="developerProductivity">developer productivity</Translate></i></h2>
<p>
<Translate id="weWantYouToMoveAsFastAsPossible">We want you to move as fast as possible. Whether your database is pushing millions of transactions per second or you're publishing messages to tens of
thousands of subscribers, Momento is with you managing the infrastructure, tackling scaling events, and providing you with simple API calls.</Translate>
<Translate id="weWantYouToMoveAsFastAsPossible">We want you to move as fast as possible. Whether your
database is pushing millions of transactions per second or you're publishing messages to tens of
thousands of subscribers, Momento is with you managing the infrastructure, tackling scaling events,
and providing you with simple API calls.</Translate>
</p>

<h2 className={styles.subsectionTitle}><Translate id="weGoWhereYouGo">We go where you go</Translate></h2>
<h2 className={styles.subsectionTitle}><Translate id="weGoWhereYouGo">We go where you go</Translate>
</h2>
<p>
<Translate id="momentoWorksHardToProvideDevelopers">Momento works hard to provide developers with SDKs in as many programming languages possible. We have clients for all types of projects: browsers, Android
development, iOS apps, and 10+ server-side languages. Looking for tuned clients for your production environment or Lambda function? Our SDKs have</Translate>
<a href="/cache/develop/basics/client-configuration-objects#pre-built-configurations"><Translate id="optimizedConfigurations">optimized configurations</Translate></a> <Translate id="forAnywhereDevelopmentTakesYou">for anywhere development takes you.</Translate>
<Translate id="momentoWorksHardToProvideDevelopers">Momento works hard to provide developers with SDKs
in as many programming languages possible. We have clients for all types of projects: browsers,
Android
development, iOS apps, and 10+ server-side languages. Looking for tuned clients for your production
environment or Lambda function? Our SDKs have</Translate>
<a href="/cache/develop/basics/client-configuration-objects#pre-built-configurations"><Translate
id="optimizedConfigurations">optimized configurations</Translate></a> <Translate
id="forAnywhereDevelopmentTakesYou">for anywhere development takes you.</Translate>
</p>
</div>
<div className={styles.subsectionGraphic}>
<img src="/img/landing-page-detail-graphic.png" width={300} />
<img src="/img/landing-page-detail-graphic.png" width={300}/>
</div>
</div>
<h2 className={styles.subsectionTitle}><Translate id="simplifyYourCloudArchitecture">Simplify your cloud architecture</Translate></h2>
<h2 className={styles.subsectionTitle}><Translate id="simplifyYourCloudArchitecture">Simplify your cloud
architecture</Translate></h2>
<p>
<Translate id="buildingRobust">Building robust, fault-tolerant systems at scale in the cloud is tough. We know. Lean on Momento's expertise to handle the infrastructure for you. Say
goodbye to advanced networking, aggressive load balancing and scaling configurations, and complex WebSocket architectures. With Momento Cache and Topics,
it's all managed for you - and getting better every day.</Translate>
<Translate id="buildingRobust">Building robust, fault-tolerant systems at scale in the cloud is tough. We
know. Lean on Momento's expertise to handle the infrastructure for you. Say
goodbye to advanced networking, aggressive load balancing and scaling configurations, and complex
WebSocket architectures. With Momento Cache and Topics,
it's all managed for you - and getting better every day.</Translate>
</p>
</div>
<div className={styles.section}>
<h2 className={styles.sectionTitle}><Translate id="browseOurProducts">Browse our products</Translate></h2>
<div className={styles.productWrapper}>
<CardGrid variant='dense'>
<LinkCard
alignItems='center'
title="Cache"
link="/cache"
description="low-latency ephemeral storage"
icon="/img/cache/momento-cache-brand-icon.svg"
alignItems='center'
title="Cache"
link="/cache"
description="low-latency ephemeral storage"
icon="/img/cache/momento-cache-brand-icon.svg"
/>
<LinkCard
alignItems='center'
title="Topics"
link="/topics"
description="low-latency ephemeral event bus"
icon="/img/topics/momento-topics-brand-icons.svg"
alignItems='center'
title="Topics"
link="/topics"
description="low-latency ephemeral event bus"
icon="/img/topics/momento-topics-brand-icons.svg"
/>
<LinkCard
alignItems='center'
title="Leaderboards"
link="/leaderboards"
description="massive, durable sorted sets"
icon="/img/leaderboards/momento-leaderboards-2d.svg"
alignItems='center'
title="Leaderboards"
link="/leaderboards"
description="massive, durable sorted sets"
icon="/img/leaderboards/momento-leaderboards-2d.svg"
/>
</CardGrid>
</div>
</div>
<div className={styles.highlightedSection}>
<h2 className={styles.highlightedTitle}><Translate id="AccountSharing">Account Sharing</Translate></h2>
<p className={styles.highlightedDescription}>
<Translate id="momentoAccountSharingFeature">Momento now supports account sharing, making it easy to manage and collaborate with your team. Simplify access and improve workflows with our new account-sharing functionality. Learn more about how to set it up and use it effectively.</Translate>
</p>
<a href="/account-sharing" className={styles.learnMoreLink}>
<Translate id="learnMore">Learn More</Translate>
</a>
</div>
</div>
</main>
</Layout>
Expand Down
Binary file added static/img/account-sharing/add-operator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/account-sharing/manage-account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/account-sharing/remove-operator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/account-sharing/select-account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/account-sharing/switch-account.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8d6b050

Please sign in to comment.