placecal

created pr with 123.1 on 2026-03-13T13:31:35Z · by d0b782cc
changed status to accepted on 2026-03-13T15:30:23Z · by d0b782cc
cmds
checkout latest patchset:
ssh pr.pico.sh print 123 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 123.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 123
set PR to open (enables RSS notifications):
ssh pr.pico.sh pr open 123
set PR to draft (stops RSS notifications):
ssh pr.pico.sh pr draft 123

Patchset 123.1 on 2026-03-13T13:31:35Z · commit c2381f7

Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (1 file skipped: unsupported file type)
+1 -1 app/controllers/events_controller.rb #
......@@ -40,7 +40,7 @@ class EventsController < ApplicationController
4040 )
4141 end
4242 end
43- format.text { render Views::Events::IndexText.new(events: @events) }
43+ format.text { render Views::Events::IndexText.new(events: @events), layout: false }
4444 format.ics { render_ical }
4545 end
4646 end
Back to top