defmodule ToweropsWeb.HelpLive.Sections.Settings do @moduledoc false use ToweropsWeb, :html import ToweropsWeb.HelpLive.Sections.Helpers def render(assigns) do ~H"""

Organization Settings

Organization Settings is the central hub for configuring your Towerops organization. Access it from the main navigation under <.code>Organization Settings. The settings page uses a tabbed interface to organize different configuration areas.

General Tab

The General tab lets you manage basic organization properties:

SNMP Tab

Configure organization-wide SNMP defaults used for device polling:

<.icon name="hero-information-circle" class="h-5 w-5 text-blue-600 dark:text-blue-400 flex-shrink-0 mt-0.5" />

Credential Hierarchy

SNMP credentials follow a hierarchy: Device > Site > Organization. Device-level settings take the highest priority, followed by site-level, then organization-level defaults. This lets you set sensible defaults while overriding for specific locations or devices.

Use the Force Apply button to push the organization's SNMP settings to all devices, overriding any device or site-level customizations.

MikroTik Tab

Configure organization-wide SSH credentials for MikroTik device monitoring. This tab is only accessible to superusers. See the <.link patch={~p"/help?section=mikrotik"} class="underline hover:text-blue-900 dark:hover:text-blue-200 text-blue-700 dark:text-blue-300" > MikroTik section for detailed setup instructions.

Agents Tab

Manage remote poller (agent) assignments for your organization:

Use the Force Apply button to push the default agent assignment to all devices, overriding any device or site-level agent selections.

Integrations Tab

Connect Towerops with third-party services. See the <.link patch={~p"/help?section=integrations"} class="underline hover:text-blue-900 dark:hover:text-blue-200 text-blue-700 dark:text-blue-300" > Integrations section for full details on available integrations and how to configure them.

""" end end