34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
<h3>Nostr</h3>
|
|
<ul role="list">
|
|
<%= render FormElements::FieldsetToggleComponent.new(
|
|
form: f,
|
|
attribute: :nostr_enabled,
|
|
enabled: Setting.nostr_enabled?,
|
|
title: "Enable Nostr integration (experimental)",
|
|
description: "Allow adding nostr pubkeys and resolve user addresses via NIP-05"
|
|
) %>
|
|
<% if Setting.nostr_enabled? %>
|
|
<%= render FormElements::FieldsetResettableSettingComponent.new(
|
|
key: :nostr_private_key,
|
|
type: :password,
|
|
title: "Private key",
|
|
description: "The private key of the accounts service, used when publishing events (e.g. zap receipts)"
|
|
) %>
|
|
<%= render FormElements::FieldsetResettableSettingComponent.new(
|
|
key: :nostr_public_key,
|
|
title: "Public key",
|
|
description: "The corresponding public key of the accounts service"
|
|
) %>
|
|
</ul>
|
|
</section>
|
|
<section>
|
|
<h3>Zaps</h3>
|
|
<ul role="list">
|
|
<%= render FormElements::FieldsetResettableSettingComponent.new(
|
|
key: :nostr_zaps_relay_limit,
|
|
title: "Relay limit",
|
|
description: "The maximum number of relays to publish zap receipts to"
|
|
) %>
|
|
</ul>
|
|
<% end %>
|