iron-cms 0.19.0 → 0.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/iron/oauth/authorizations/new.html.erb +4 -1
- data/lib/iron/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5de6ec71e07c37128ed9bfe339e6149dad20855ca9a1eb908d5e5cf32f2db49a
|
|
4
|
+
data.tar.gz: a06ab1b9aec0abcfaadeb44a906adb357330c9ae179a6752a6dc4b900ba625d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39fbb2624fe577fc09e7ae0fa5b74856d0a96ecc6f6645ac9cd4084fb4bb6530c4954c6e36e384dc26ea30262ebba7baec1d2ba37b9b29d8d12520d267afba31
|
|
7
|
+
data.tar.gz: f26edb98c1fffa3aeec9b3d0cb3fd08b641d3547b78f3ed8f9f9c29d81669fcdd6c635483ff7834615502ac7ef0bf619b0f515b6a9e4f9b4eab2e3d743fbb967
|
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
<p class="mt-1 text-sm break-all text-stone-700 dark:text-stone-200"><%= @redirect_uri %></p>
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
<%# Turbo is disabled: approving redirects to the client's callback on another
|
|
19
|
+
origin (e.g. claude.ai), and a Turbo fetch can't follow a cross-origin
|
|
20
|
+
redirect — the browser blocks it under CORS. A full navigation follows it. %>
|
|
21
|
+
<%= form_with url: "/oauth/authorize", method: :post, data: { turbo: false }, class: "mt-6 grid grid-cols-2 gap-3" do |form| %>
|
|
19
22
|
<%= form.hidden_field :client_id, value: params[:client_id] %>
|
|
20
23
|
<%= form.hidden_field :redirect_uri, value: @redirect_uri %>
|
|
21
24
|
<%= form.hidden_field :response_type, value: params[:response_type] %>
|
data/lib/iron/version.rb
CHANGED