mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Both iCalendar routes were unusable: * `/conferences/.../schedule.ics` raised `NoMethodError: undefined method 'icalendar_proposals'` because the `ConferenceHelper#icalendar_proposals` helper isn't auto-included in controllers; the action crashed before rendering. * `/calendar.ics` silently redirected to `/`. The controller goes through `load_and_authorize_resource`, which authorises `:calendar` on `Conference` and is rejected for anonymous visitors because no ability grants it — CanCan's `AccessDenied` rescue redirects to root. The helper is invoked through the controller `helpers` proxy so it works in both contexts, and the calendar action is opted out of resource loading and explicitly marked as not requiring authorization since it serves a public feed across conferences. The helper is also hardened so that proposals missing a room, difficulty level, track, event type or scheduled time produce a valid event instead of crashing the whole feed. |
||
|---|---|---|
| .. | ||
| admin | ||
| api/v1 | ||
| users | ||
| application_controller_spec.rb | ||
| booths_controller_spec.rb | ||
| conference_registration_controller_spec.rb | ||
| conferences_controller_spec.rb | ||
| confirmations_controller_spec.rb | ||
| physical_ticket_controller_spec.rb | ||
| proposals_controller_spec.rb | ||
| schedules_controller_spec.rb | ||
| subscriptions_controller_spec.rb | ||
| surveys_controller_spec.rb | ||
| tracks_controller_spec.rb | ||
| users_controller_spec.rb | ||