Skip to content

Commit

Permalink
Remove test badges
Browse files Browse the repository at this point in the history
  • Loading branch information
pwizla committed Dec 18, 2024
1 parent 1660cd9 commit 070c0ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docusaurus/docs/cloud/cli/cloud-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags:
pagination_next: cloud/advanced/database
---

# Command Line Interface (CLI) <UpdatedBadge />
# Command Line Interface (CLI)

Strapi Cloud comes with a Command Line Interface (CLI) which allows you to log in and out, and to deploy a local project without it having to be hosted on a remote git repository. The CLI works with both the `yarn` and `npm` package managers.

Expand Down
2 changes: 1 addition & 1 deletion docusaurus/docs/cloud/getting-started/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tags:
- Strapi Cloud plan
---

# Project deployment with the Cloud dashboard <UpdatedBadge />
# Project deployment with the Cloud dashboard

This is a step-by-step guide for deploying your project on Strapi Cloud for the first time, using the Cloud dashboard.

Expand Down
2 changes: 1 addition & 1 deletion docusaurus/docs/cloud/projects/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Resetting an environment deletes all environments data and resets the variables
3. Click on the **Delete environment** button to confirm the deletion.

### Backups {#backups}
<GrowthBadge /> <CloudProBadge /> <CloudTeamBadge /> <UpdatedBadge />
<GrowthBadge /> <CloudProBadge /> <CloudTeamBadge />

The <Icon name="arrow-clockwise" /> *Backups* tab informs you of the status and date of the latest backup of your Strapi Cloud projects. The databases associated with all existing Strapi Cloud projects are indeed automatically backed up (weekly for Pro plans and daily for Team plans). Backups are retained for a 28-day period. Additionally, you can create a single manual backup.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default factories.createCoreController('api::restaurant.restaurant', ({ s
Each controller action can be an `async` or `sync` function.
Every action receives a context object (`ctx`) as a parameter. `ctx` contains the [request context](/dev-docs/backend-customization/requests-responses#ctxrequest) and the [response context](/dev-docs/backend-customization/requests-responses#ctxresponse).

<details><UpdatedBadge />
<details>
<summary>Example: GET /hello route calling a basic controller</summary>

A specific `GET /hello` [route](/dev-docs/backend-customization/routes) is defined, the name of the router file (i.e. `index`) is used to call the controller handler (i.e. `index`). Every time a `GET /hello` request is sent to the server, Strapi calls the `index` action in the `hello.js` controller, which returns `Hello World!`:
Expand Down

0 comments on commit 070c0ba

Please sign in to comment.