18 lines
585 B
Plaintext
18 lines
585 B
Plaintext
<h3>Discourse</h3>
|
|
<ul role="list">
|
|
<%= render FormElements::FieldsetToggleComponent.new(
|
|
form: f,
|
|
attribute: :discourse_enabled,
|
|
enabled: Setting.discourse_enabled?,
|
|
title: "Enable Discourse integration",
|
|
description: "Discourse configuration present and features enabled"
|
|
) %>
|
|
<% if Setting.discourse_enabled? %>
|
|
<%= render FormElements::FieldsetComponent.new(title: "Public URL") do %>
|
|
<%= f.text_field :discourse_public_url,
|
|
value: Setting.discourse_public_url,
|
|
class: "w-full", disabled: true %>
|
|
<% end %>
|
|
<% end %>
|
|
</ul>
|