mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 14:35:23 +02:00
Redis check for self hosted apps (#2353)
* Redis check for self hosted apps * Run linter with autocorrect * Add Redis to CI
This commit is contained in:
parent
4044a8519f
commit
9fabcf4c72
20 changed files with 152 additions and 47 deletions
|
@ -1,9 +1,9 @@
|
|||
<%# locals: (link_token:, region:, item_id:, is_update: false) %>
|
||||
|
||||
<%= tag.div data: {
|
||||
controller: "plaid",
|
||||
plaid_link_token_value: link_token,
|
||||
<%= tag.div data: {
|
||||
controller: "plaid",
|
||||
plaid_link_token_value: link_token,
|
||||
plaid_region_value: region,
|
||||
plaid_item_id_value: item_id,
|
||||
plaid_is_update_value: is_update
|
||||
} %>
|
||||
} %>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<%# We render this in the empty modal frame so if Plaid flow is closed, user stays on same page they were on %>
|
||||
<%= turbo_frame_tag "modal" do %>
|
||||
<%= render "plaid_items/auto_link_opener",
|
||||
link_token: @link_token,
|
||||
region: @plaid_item.plaid_region,
|
||||
item_id: @plaid_item.id,
|
||||
<%= render "plaid_items/auto_link_opener",
|
||||
link_token: @link_token,
|
||||
region: @plaid_item.plaid_region,
|
||||
item_id: @plaid_item.id,
|
||||
is_update: true %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<%# We render this in the empty modal frame so if Plaid flow is closed, user stays on same page they were on %>
|
||||
<%= turbo_frame_tag "modal" do %>
|
||||
<%= render "plaid_items/auto_link_opener",
|
||||
link_token: @link_token,
|
||||
region: params[:region],
|
||||
item_id: "",
|
||||
<%= render "plaid_items/auto_link_opener",
|
||||
link_token: @link_token,
|
||||
region: params[:region],
|
||||
item_id: "",
|
||||
is_update: false %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue