Skip to content

Instantly share code, notes, and snippets.

View stephendolan's full-sized avatar

Stephen Dolan stephendolan

View GitHub Profile
@stephendolan
stephendolan / form_fields.cr
Last active July 11, 2022 15:07
Saving array of values to the DB in a Lucky operation
class Videos::FormFields < BaseComponent
needs operation : SaveVideo
div data_controller: "select" do
mount Shared::FieldLabel, operation.topic_ids, "Topics"
text_input operation.topic_ids, class: "hidden", data_select_target: "input"
tag "select", multiple: true, data_select_target: "select" do
render_topic_options
end
end
@stephendolan
stephendolan / lucky_spec_action.yml
Last active April 27, 2020 21:48
GitHub Action - Lucky Setup and Spec
name: Lucky Build and Spec CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build: