Skip to content

Commit

Permalink
Add "Using ActionCable with PostgreSQL/SQLite" pages
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoroth committed Nov 3, 2023
1 parent bec7388 commit c7e99c4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Using ActionCable with PostgreSQL
framework: rails
library: actioncable
---

<%= render Page::ContainerComponent.new(page: current_page) do |page| %>
<% page.with_title(title: current_page.data.fetch("title")) %>

<%= render Page::ContributeComponent.new(file: current_page.asset.path.path) %>
<% end %>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Using ActionCable with SQLite
framework: rails
library: actioncable
---

<%= render Page::ContainerComponent.new(page: current_page) do |page| %>
<% page.with_title(title: current_page.data.fetch("title")) %>

<%= render Page::ContributeComponent.new(file: current_page.asset.path.path) %>
<% end %>

0 comments on commit c7e99c4

Please sign in to comment.