docbrown/app/views/users/_extensions.html.erb
Jeremy Friesen bd36ed087b
Removing the stackbit integration (#15701)
* Removing the stackbit integration

The feature didn't quite work and Stackbit no longer supports this
integration.

Yes there are a few places where the webhooks has a string of "stackbit"
but I'm hesitant to remove that, as they are the part of the Webhooks
tests.

Closes #15700

* Update lib/data_update_scripts/20211206222716_remove_stackbit_page.rb

Co-authored-by: Michael Kohl <citizen428@forem.com>

Co-authored-by: Michael Kohl <citizen428@forem.com>
2021-12-08 10:20:15 -05:00

25 lines
1.2 KiB
Text

<%= render partial: "response_templates" %>
<%= render partial: "publishing_from_rss" %>
<div class="crayons-card crayons-card--content-rows">
<header>
<h2 class="crayons-subtitle-1 flex items-center">
<%= t("views.settings.extensions.web") %>
<span class="ml-2 crayons-indicator crayons-indicator--accent"><%= t("core.beta") %></span>
</h2>
<p class="color-base-70">
<%= t("views.settings.extensions.micro") %><a href="https://dev.to/hacksultan/web-monetization-like-i-m-5-1418"><%= t("views.settings.extensions.learn") %></a>
</p>
</header>
<%= form_for(@user, html: { id: nil, class: "grid gap-4" }) do |f| %>
<div class="crayons-field">
<%= f.label :payment_pointer, t("views.settings.extensions.payment"), class: "crayons-field__label" %>
<%= f.text_field :payment_pointer, class: "crayons-textfield", placeholder: "$pay.somethinglikethis.co/value" %>
</div>
<%= f.hidden_field :tab, value: @tab, id: nil %>
<button type="submit" class="crayons-btn w-max"><%= t("views.settings.extensions.save_web") %></button>
<% end %>
</div>
<%= render partial: "users/integrations_github_repositories", locals: { show_integration: @github_repositories_show } %>