26 lines
844 B
Plaintext
26 lines
844 B
Plaintext
<h3>Mastodon</h3>
|
|
<ul role="list">
|
|
<%= render FormElements::FieldsetToggleComponent.new(
|
|
form: f,
|
|
attribute: :mastodon_enabled,
|
|
enabled: Setting.mastodon_enabled?,
|
|
title: "Enable Mastodon integration",
|
|
description: "Mastodon configuration present and features enabled"
|
|
) %>
|
|
<% if Setting.mastodon_enabled? %>
|
|
<%= render FormElements::FieldsetResettableSettingComponent.new(
|
|
key: :mastodon_public_url,
|
|
title: "Public URL"
|
|
) %>
|
|
<%= render FormElements::FieldsetResettableSettingComponent.new(
|
|
key: :mastodon_address_domain,
|
|
title: "User address domain"
|
|
) %>
|
|
<%= render FormElements::FieldsetResettableSettingComponent.new(
|
|
key: :mastodon_auth_token,
|
|
type: :password,
|
|
title: "API auth token"
|
|
) %>
|
|
<% end %>
|
|
</ul>
|