akkounts/app/views/settings/_nostr_user_relays.html.erb
Râu Cao 04a9061663
All checks were successful
continuous-integration/drone/push Build is passing
WIP Render nostr profile and relay status with Ruby
2024-10-18 15:29:43 +02:00

16 lines
383 B
Plaintext

<%= turbo_frame_tag "nostr_user_metadata" do %>
<section>
<h3>Profile</h3>
<%= render Settings::NostrProfileStatusComponent.new(
profile_event: @profile,
user_address: current_user.address
) %>
</section>
<section>
<h3>Relays</h3>
<%= render Settings::NostrRelayStatusComponent.new(
relay_urls: @relay_urls
) %>
</section>
<% end %>