diff --git a/docs/guides/acl-definition.md b/docs/guides/acl-definition.md index 494e113..b5aa82a 100644 --- a/docs/guides/acl-definition.md +++ b/docs/guides/acl-definition.md @@ -93,7 +93,7 @@ export class Comment { As you can see, you can traverse through relations. Our definition says, that `moderator` can update fields `hiddenAt` and `content` of any `Comment` of an `Article` in a `Category` defined in `categoryId` variable. :::note migrations -Don't forget to [create a migration](/reference/engine/schema/migrations.md) to apply changes: +Don't forget to [create a migration](/reference/engine/migrations/basics.md) to apply changes: ```bash npm run contember migrations:diff my-blog setup-acl ``` diff --git a/docs/intro/actions.mdx b/docs/intro/actions.mdx index a12d4aa..ea485a1 100644 --- a/docs/intro/actions.mdx +++ b/docs/intro/actions.mdx @@ -38,7 +38,7 @@ Before this can work, though, you'll need to apply the changes using migrations. npm run contember migrations:diff "my-first-action" ``` -(Learn more about [schema migrations](/reference/engine/schema/migrations.md)) +(Learn more about [migrations](/reference/engine/migrations/overview.md)) That's all there is to the Contember setup. To test this locally, refer to our [guide to Actions](/reference/engine/actions/overview). If you're using Contember Cloud, you'll need to enable Actions for your project in the interface. @@ -69,4 +69,4 @@ The next step is to use this payload for your specific needs. In our case, we wa

Quick tutorial on how to quickly use Action with Superface AI.

- \ No newline at end of file + diff --git a/docs/intro/glossary.md b/docs/intro/glossary.md index 4a8d98b..0dc8fbc 100644 --- a/docs/intro/glossary.md +++ b/docs/intro/glossary.md @@ -17,16 +17,16 @@ title: Glossary ## Advanced -| Term | Definition | -| ----------------------- | ----------- | -| Workspace | Your (git) repository with one or more Contember projects. | -| [Content API](/reference/engine/content/overview.md) | This is the primary GraphQL API for your project, which is automatically generated from your schema definition. | -| System API | This is a supplementary API for your project. It's primarily used to manage schema migrations. You need it only in really advanced usecases. | -| [Tenant API](/reference/engine/tenant/overview.md) | This API allows you to manage users, API keys, and project memberships on an instance. | -| [Project Schema](/reference/engine/schema/overview.md) | This is the definition of your model, ACL rules, and input validation rules. | -| [Project Schema Migrations](/reference/engine/schema/migrations.md) | These are chronologically sorted, immutable JSON files that contain all schema changes. They serve as the source of truth for a schema. | -| Event | Every operation performed on your data is stored in an event log. This log can be utilized to track history. | -| Superadmin | This is a special user role within Contember. The Superadmin has the highest level of system access and control. | +| Term | Definition | +|----------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------| +| Workspace | Your (git) repository with one or more Contember projects. | +| [Content API](/reference/engine/content/overview.md) | This is the primary GraphQL API for your project, which is automatically generated from your schema definition. | +| System API | This is a supplementary API for your project. It's primarily used to manage schema migrations. You need it only in really advanced usecases. | +| [Tenant API](/reference/engine/tenant/overview.md) | This API allows you to manage users, API keys, and project memberships on an instance. | +| [Project Schema](/reference/engine/schema/overview.md) | This is the definition of your model, ACL rules, and input validation rules. | +| [Project Migrations](/reference/engine/migrations/overview.md) | These are chronologically sorted, files that contain all schema or content changes. They serve as the source of truth for a schema. | +| Event | Every operation performed on your data is stored in an event log. This log can be utilized to track history. | +| Superadmin | This is a special user role within Contember. The Superadmin has the highest level of system access and control. |