Platform Settings

Learn how to customize the experience for your users

Platform Settings

Overview

Platform settings are essential configurations that apply to all businesses on the Cadana platform. These settings ensure that the platform aligns with your branding and functional requirements, offering a seamless experience for both administrators and end-users.

Key Configuration Elements

1. Email Settings

This section is crucial for custom notifications and displaying a support email where necessary, such as in payslips.

  • bccEmails: Blind carbon copy email addresses for notifications.
  • fromEmail: The sender's email address for outgoing notifications.
  • fromTitle: The sender's name or title displayed in outgoing notifications.

2. Theme

Defines the visual configuration of the platform, including font, color, and logo.

3. Login and Logout URLs

When using a custom domain, these URLs are essential for routing unauthenticated users.

Sample Platform Settings JSON

Here is a sample JSON configuration that outlines the structure and options available for platform settings:

{
    "platformSettings": {
        "emailSettings": {
            "bccEmails": "",
            "fromEmail": "[email protected]",
            "fromTitle": "Custom Message"
        },
        "loginUrl": "https://loginUrl",
        "logoutUrl": "https://logoutUrl",
        "name": "",
        "theme": {
            "colors": {
                "foreground": "#344054",
                "primary": "#e75423",
                "secondary": "#e75423"
            },
            "logoUrl": "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png",
            "typography": {
                "common": {
                    "fontFamily": "Arial"
                },
                "titles": {
                    "fontFamily": "Arial"
                }
            }
        }
    }
}