module AccountsHelper def summary_card(title:, &block) content = capture(&block) render "accounts/summary_card", title: title, content: content end def sync_path_for(account) # Always use the account sync path, which handles syncing all providers sync_account_path(account) end end