You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/src/content/docs/developers/customizing.mdx
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,9 @@ title: Configuration
3
3
description: This document explains how to customize the Atomic CRM application.
4
4
---
5
5
6
-
Developers can customize the Atomic CRM application to suit their business needs. Some of the customizations can be achieved via configuration on the `<CRM>` component, while others require changes to the source code.
6
+
Admin users can already customize the application domain-specific data (e.g., deal stages, note statuses, etc.) via [the Settings page](../user//settings). However, developers can go further and define the defaults for these data by configuring the `<CRM>` component in `src/App.tsx`.
7
+
8
+
Other customizations require changes to the source code.
7
9
8
10
## The `<CRM>` component
9
11
@@ -26,12 +28,14 @@ import { CRM } from "@/components/atomic-crm/root/CRM";
description: This document explains how to configure Atomic CRM.
4
+
---
5
+
6
+
Admin users can configure various aspects of Atomic CRM to tailor the application to their specific needs. This includes customizing the user interface, defining categories, etc.
7
+
8
+
## Accessing the Settings Page
9
+
10
+
If you're logged in as an admin user, you can access the configuration page by clicking on your profile picture in the top right corner of the application and selecting "Settings" from the dropdown menu.
11
+
12
+

13
+
14
+
The settings page is organized into different sections, each corresponding to a specific aspect of the application that can be configured. You can navigate between these sections using the left sidebar.
15
+
16
+
## Changing Application Settings
17
+
18
+
The Settings page lets you customize:
19
+
20
+
- The application name and logo
21
+
- The company sectors
22
+
- The stages of the deal pipeline (e.g., prospecting, negotiation, closed-won, etc.)
23
+
- The deal categories
24
+
- The note statuses (hot, cold, etc.)
25
+
- The task types (call, email, etc.)
26
+
27
+
Once you save your changes, they will be immediately reflected across the application. For example, if you update the deal stages, the new stages will be available for users to drag and drop deals in the Kanban view, and they will also be available when creating or editing a deal.
28
+
29
+
When updating the name of an existing category (e.g., a deal stage), the new name will be applied to all existing records that belong to that category. For instance, if you rename the "Prospecting" deal stage to "Lead", all deals that were previously in the "Prospecting" stage will now be in the "Lead" stage.
0 commit comments