Skip to main content

General

This section of the documentation provides a detailed overview of the "General" settings within the Flow platform. These settings are foundational to how your site operates and presents itself.

Accessing General settings

Navigate to General Site settings:

  1. Open the Site Settings by clicking on the three-dot menu in the top right corner.
  2. Navigate to the "General" tab from the settings menu (also the first page loaded).

Here, you will find several subsections that allow you to configure the basic aspects of your site.

Site info

Information about the site.

PropertyTypeDefault ValueOptionsDescription
namestringN/AN/ASite name used to identify the site/team/company.
logoimageN/AN/ACompany or team logo that will be used on emails, login screens etc.

Site Defaults

Default formats and metrics used when creating new users. Users can formats to their liking, but they will be created with site defaults.

PropertyTypeDefault ValueOptionsDescription
date formatlistY-m-dY-m-d d.m.Y d/m/Y d-m-Y m-d-YUsed to display dates.
time formatlistH:iH:i H:i:s h:i A h:i:s AUsed to display clock.
number formatlist1,234.561,234.56 1.234,56 1 234.56 1 234,56Used to display numbers.
languagelistEnglishLanguagesSets the interface language.

Formats are explained by the PHP Documentation. For more information, please visit PHP Date Formats

Storage

Storage will display how much storage your site are using. The storage display will update everytime a file is added, and reindex once in a while to verify calculation.

info

To upgrade storage, please contact FlowAgent.

JSON Configuration

PropertyTypeDefault ValueOptionsDescription
hideDocumentsButtonsboolfalsetrue or falseHide default buttons for downloading documents (legacy).
defaultOrganisationkeyname(empty)N/ASet a default organisation that should always be applied to new organisation users.
supportUrlstring(empty)N/AShows a support link in the navbar for super users.
loginobjectnullN/ACustomize the login screen to your need. See Custom login screen.
mailobjectnullN/ACustomize the mails sent by the system. See Custom mail templates.
dashboardobjectnullN/ACustomize dashboard settings (see next row(s)).
dashboard.actionalButtonsobjectnullN/AShow actional buttons on the dashboard in the navbar. See how to show actional buttons.
pricegroupobjectnullN/AConfigure how pricegroup should work. See Price Group documentation.
resourceplanningobjectnullN/AConfigure how resource planning should work. See Resource Planning documentation.

Examples

Example 1: Example use of all properties with their default values.

{
"hideDocumentButtons": false,
"supportUrl": "",
"login": {

},
"mail": {

},
"dashboard": {
"actionalButtons": [

]
},
"pricegroup": {
},
"resourceplanning": {

}
}
{
"supportUrl": "https://flowagent.nu/kontakt"
}

Example 3: Hide document buttons.

{
"hideDocumentButtons": true
}