Skip to content

Commit 070c0ba

Browse files
committed
Remove test badges
1 parent 1660cd9 commit 070c0ba

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docusaurus/docs/cloud/cli/cloud-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
pagination_next: cloud/advanced/database
1010
---
1111

12-
# Command Line Interface (CLI) <UpdatedBadge />
12+
# Command Line Interface (CLI)
1313

1414
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.
1515

docusaurus/docs/cloud/getting-started/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tags:
1414
- Strapi Cloud plan
1515
---
1616

17-
# Project deployment with the Cloud dashboard <UpdatedBadge />
17+
# Project deployment with the Cloud dashboard
1818

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

docusaurus/docs/cloud/projects/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Resetting an environment deletes all environments data and resets the variables
323323
3. Click on the **Delete environment** button to confirm the deletion.
324324

325325
### Backups {#backups}
326-
<GrowthBadge /> <CloudProBadge /> <CloudTeamBadge /> <UpdatedBadge />
326+
<GrowthBadge /> <CloudProBadge /> <CloudTeamBadge />
327327

328328
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.
329329

docusaurus/docs/dev-docs/backend-customization/controllers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default factories.createCoreController('api::restaurant.restaurant', ({ s
143143
Each controller action can be an `async` or `sync` function.
144144
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).
145145

146-
<details><UpdatedBadge />
146+
<details>
147147
<summary>Example: GET /hello route calling a basic controller</summary>
148148

149149
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!`:

0 commit comments

Comments
 (0)