├── .dockerignore ├── .env.test ├── .github └── workflows │ ├── lint.yml │ ├── security.yml │ └── tests.yml ├── .gitignore ├── .herb.yml ├── .irbrc ├── .kamal ├── hooks │ ├── docker-setup.sample │ ├── post-deploy.sample │ ├── post-proxy-reboot.sample │ ├── pre-build.sample │ ├── pre-connect.sample │ ├── pre-deploy.sample │ └── pre-proxy-reboot.sample └── secrets ├── .node-version ├── .prettierignore ├── .prettierrc ├── .rubocop.yml ├── .ruby-version ├── AGENTS.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── app ├── admin │ ├── absence.rb │ ├── activity.rb │ ├── activity_participation.rb │ ├── activity_preset.rb │ ├── admin.rb │ ├── announcement.rb │ ├── audit.rb │ ├── basket.rb │ ├── basket_complement.rb │ ├── basket_content.rb │ ├── basket_content │ │ └── product.rb │ ├── basket_shift.rb │ ├── basket_size.rb │ ├── bidding_round.rb │ ├── bidding_round │ │ └── pledge.rb │ ├── comment.rb │ ├── components │ │ ├── columns.rb │ │ ├── panel.rb │ │ ├── side_panel.rb │ │ └── tabs.rb │ ├── concerns │ │ └── translated_csv_filename.rb │ ├── dashboard.rb │ ├── delivery.rb │ ├── delivery_cycle.rb │ ├── depot.rb │ ├── depot_group.rb │ ├── handbook.rb │ ├── invoice.rb │ ├── mail_template.rb │ ├── member.rb │ ├── membership.rb │ ├── newsletter.rb │ ├── newsletter │ │ ├── delivery.rb │ │ ├── segment.rb │ │ └── template.rb │ ├── organization.rb │ ├── payment.rb │ ├── permission.rb │ ├── session.rb │ ├── shop │ │ ├── order.rb │ │ ├── producer.rb │ │ ├── product.rb │ │ ├── special_delivery.rb │ │ └── tag.rb │ ├── support │ │ └── ticket.rb │ └── updates.rb ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── admin │ │ │ ├── canceled.de.png │ │ │ ├── canceled.en.png │ │ │ ├── canceled.fr.png │ │ │ ├── canceled.it.png │ │ │ └── canceled.nl.png │ │ ├── handbook │ │ │ ├── basket_price_extra │ │ │ │ ├── label.de.png │ │ │ │ ├── label.en.png │ │ │ │ ├── label.fr.png │ │ │ │ ├── label.it.png │ │ │ │ ├── label_with_details.de.png │ │ │ │ ├── label_with_details.en.png │ │ │ │ ├── label_with_details.fr.png │ │ │ │ └── label_with_details.it.png │ │ │ └── membership_renewal │ │ │ │ ├── form.de.png │ │ │ │ ├── form.en.png │ │ │ │ ├── form.fr.png │ │ │ │ ├── form.it.png │ │ │ │ ├── section.de.png │ │ │ │ ├── section.en.png │ │ │ │ ├── section.fr.png │ │ │ │ └── section.it.png │ │ ├── icons │ │ │ ├── outline │ │ │ │ ├── adjustments-horizontal.svg │ │ │ │ ├── archive-box-x-mark.svg │ │ │ │ ├── arrow-path.svg │ │ │ │ ├── arrow-right-end-on-rectangle.svg │ │ │ │ ├── arrow-right-start-on-rectangle.svg │ │ │ │ ├── arrow-top-right-on-square.svg │ │ │ │ ├── arrow-uturn-left.svg │ │ │ │ ├── banknotes.svg │ │ │ │ ├── bars-3.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── calendar-clock.svg │ │ │ │ ├── calendar-days.svg │ │ │ │ ├── car.svg │ │ │ │ ├── chat-bubble-bottom-center-text.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── circle-check-big.svg │ │ │ │ ├── circle-off.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── document-arrow-down.svg │ │ │ │ ├── document-duplicate.svg │ │ │ │ ├── ellipsis-horizontal.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-up.svg │ │ │ │ ├── file-xlsx.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── hand-raised.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── home.svg │ │ │ │ ├── identification.svg │ │ │ │ ├── information-circle.svg │ │ │ │ ├── key.svg │ │ │ │ ├── language.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list-plus.svg │ │ │ │ ├── mail-check.svg │ │ │ │ ├── mail-open.svg │ │ │ │ ├── mail-plus.svg │ │ │ │ ├── map.svg │ │ │ │ ├── message-circle-question-mark.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── paper-airplane.svg │ │ │ │ ├── pencil-square.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── receipt-refund.svg │ │ │ │ ├── redo-off.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── scale.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users.svg │ │ │ │ ├── x-circle.svg │ │ │ │ └── x-mark.svg │ │ │ ├── simpleicons │ │ │ │ ├── facebook.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ └── x.svg │ │ │ └── solid │ │ │ │ ├── logo.svg │ │ │ │ └── user-circle.svg │ │ ├── logo.png │ │ ├── simpleicons │ │ │ ├── facebook.png │ │ │ ├── instagram.png │ │ │ ├── linkedin.png │ │ │ ├── pinterest.png │ │ │ ├── signal.png │ │ │ ├── snapchat.png │ │ │ ├── telegram.png │ │ │ ├── tiktok.png │ │ │ ├── whatsapp.png │ │ │ └── x.png │ │ └── updates │ │ │ ├── 20210526_new_announcement_feature │ │ │ └── delivery-pdf.png │ │ │ ├── 20211019_new_members_section_design │ │ │ ├── after.png │ │ │ └── before.png │ │ │ ├── 20211227_public_names │ │ │ ├── basket_names.png │ │ │ └── form.png │ │ │ ├── 20211230_handbook │ │ │ └── footer.png │ │ │ ├── 20220108_absence_extra_text │ │ │ └── extra_text.png │ │ │ ├── 20220212_shop │ │ │ └── shop.png │ │ │ ├── 20220506_basket_content_pricing │ │ │ ├── basket_values.png │ │ │ └── baskets_distribution.png │ │ │ ├── 20220909_billing_audit │ │ │ └── invoice_audit.png │ │ │ ├── 20220929_billing_email │ │ │ └── member_form.png │ │ │ ├── 20221111_send_closed_invoice │ │ │ └── settings.png │ │ │ ├── 20221202_basket_form_details_and_form_modes │ │ │ ├── basket_price_details_edit.png │ │ │ ├── basket_price_details_form.png │ │ │ └── form_modes.png │ │ │ ├── 20221216_membership_update │ │ │ └── settings.png │ │ │ ├── 20221218_basket_content_distribution_mode │ │ │ └── manual_mode.png │ │ │ ├── 20221223_activity_participations_billing │ │ │ └── billing_section.png │ │ │ ├── 20230105_depot_public_note │ │ │ └── deliveries.png │ │ │ ├── 20230225_newsletters │ │ │ └── menu.png │ │ │ ├── 20230324_image_support │ │ │ └── richtext_edit.png │ │ │ ├── 20230411_newsletter_segment │ │ │ └── menu.png │ │ │ ├── 20230430_member_shop_depot │ │ │ └── member_form.png │ │ │ ├── 20230512_membership_complement_update │ │ │ └── settings.png │ │ │ ├── 20230526_shop_order_percentage │ │ │ ├── member_order_form.png │ │ │ └── settings.png │ │ │ ├── 20230602_admin_delivery_list │ │ │ └── admin_form.png │ │ │ ├── 20230609_depot_order │ │ │ ├── depot_order.jpg │ │ │ ├── depot_order.mp4 │ │ │ ├── depot_order.ogg │ │ │ └── depot_order.webm │ │ │ ├── 20230616_depot_delivery_sheets_mode │ │ │ ├── form.png │ │ │ └── pdf.png │ │ │ ├── 20230624_membership_pricing │ │ │ └── widget.png │ │ │ ├── 20230630_basket_contents_duplication │ │ │ └── sidebar.png │ │ │ ├── 20230806_invoice_cancelled_mail_template │ │ │ └── mail_templates.png │ │ │ ├── 20230812_shop_order_automatic_invoicing │ │ │ └── settings.png │ │ │ ├── 20230825_membership_renewed_attributes │ │ │ └── settings.png │ │ │ ├── 20230915_note_for_absence_and_activity_participation │ │ │ ├── absence_form.png │ │ │ ├── activity_participation_form.png │ │ │ ├── admin_icon.png │ │ │ └── admin_notifications.png │ │ │ ├── 20231020_shop_display_product_in_delivery_sheets │ │ │ └── product_edit.png │ │ │ ├── 20231103_new_member_fee │ │ │ └── form.png │ │ │ ├── 20240301_activity_participations_form │ │ │ └── form.png │ │ │ ├── 20240510_newsletter_deliveries │ │ │ └── stats.png │ │ │ ├── 20240914_activity_invoicing │ │ │ ├── sidebar.de.png │ │ │ ├── sidebar.en.png │ │ │ ├── sidebar.fr.png │ │ │ └── sidebar.it.png │ │ │ ├── 20250307_hetzner │ │ │ └── response_time.png │ │ │ ├── 20251010_support_ticket │ │ │ └── support_menu_bar.png │ │ │ └── _20231226_basket_complement_activity_participation │ │ │ └── form.png │ ├── stylesheets │ │ └── mailer.css │ └── tailwind │ │ ├── application.css │ │ ├── base.css │ │ ├── components │ │ ├── animation.css │ │ ├── batch_actions.css │ │ ├── breadcrumb.css │ │ ├── buttons.css │ │ ├── codejar.css │ │ ├── counts.css │ │ ├── filters.css │ │ ├── flatpickr.css │ │ ├── formtastic.css │ │ ├── mail_preview.css │ │ ├── markdown.css │ │ ├── members.css │ │ ├── pagination.css │ │ ├── panel.css │ │ ├── scopes.css │ │ ├── status_tag.css │ │ ├── table.css │ │ ├── tabs_nav.css │ │ └── trix.css │ │ └── dark.css ├── controllers │ ├── activity_participations_calendar_controller.rb │ ├── api │ │ └── v1 │ │ │ ├── base_controller.rb │ │ │ ├── basket_contents_controller.rb │ │ │ ├── configurations_controller.rb │ │ │ └── members_controller.rb │ ├── application_controller.rb │ ├── billing_snapshots_controller.rb │ ├── billings_controller.rb │ ├── concerns │ │ └── .keep │ ├── email_suppressions_controller.rb │ ├── logos_controller.rb │ ├── members │ │ ├── absences_controller.rb │ │ ├── accounts_controller.rb │ │ ├── activities_controller.rb │ │ ├── activity_participations_controller.rb │ │ ├── base_controller.rb │ │ ├── basket_shifts_controller.rb │ │ ├── baskets_controller.rb │ │ ├── bidding_round │ │ │ └── pledges_controller.rb │ │ ├── billing_controller.rb │ │ ├── calendars_controller.rb │ │ ├── contact_sharings_controller.rb │ │ ├── deliveries_controller.rb │ │ ├── email_suppressions_controller.rb │ │ ├── infos_controller.rb │ │ ├── members_controller.rb │ │ ├── membership_renewals_controller.rb │ │ ├── memberships_controller.rb │ │ ├── newsletter_deliveries_controller.rb │ │ ├── newsletter_subscriptions_controller.rb │ │ ├── sessions_controller.rb │ │ └── shop │ │ │ ├── base_controller.rb │ │ │ ├── order_items_controller.rb │ │ │ ├── orders_controller.rb │ │ │ └── products_controller.rb │ ├── mission_control │ │ ├── base_controller.rb │ │ └── sessions_controller.rb │ ├── postmark │ │ └── webhooks_controller.rb │ └── sessions_controller.rb ├── helpers │ ├── absences_helper.rb │ ├── active_admin │ │ ├── counter_helper.rb │ │ ├── handbook_helper.rb │ │ └── sidebar_helper.rb │ ├── activities_helper.rb │ ├── admin_helper.rb │ ├── application_helper.rb │ ├── audits_helper.rb │ ├── basket_contents_helper.rb │ ├── baskets_helper.rb │ ├── bidding_rounds_helper.rb │ ├── calendars_helper.rb │ ├── currency_helper.rb │ ├── dashboard_helper.rb │ ├── delivery_cycles_helper.rb │ ├── forms_helper.rb │ ├── icons_helper.rb │ ├── invoices_helper.rb │ ├── layouts_helper.rb │ ├── links_helper.rb │ ├── members_helper.rb │ ├── memberships_helper.rb │ ├── newsletters_helper.rb │ ├── numbers_helper.rb │ ├── organizations_helper.rb │ ├── permissions_helper.rb │ ├── shop_helper.rb │ ├── support_helper.rb │ ├── tables_helper.rb │ └── tooltip_helper.rb ├── inputs │ ├── action_text_input.rb │ ├── check_boxes_input.rb │ └── custom_range_input.rb ├── javascript │ ├── admin.js │ ├── admin │ │ └── trix.js │ ├── components │ │ ├── appsignal.js │ │ └── utils.js │ ├── controllers │ │ ├── admin │ │ │ ├── application.js │ │ │ ├── auto_refresh_controller.js │ │ │ ├── auto_save_controller.js │ │ │ ├── basket_content_distribution_controller.js │ │ │ ├── basket_content_products_select_controller.js │ │ │ ├── check_boxes_toggle_all_controller.js │ │ │ ├── code_editor_controller.js │ │ │ ├── disable_controller.js │ │ │ ├── emoji_button_controller.js │ │ │ ├── features_list_controller.js │ │ │ ├── filters_controller.js │ │ │ ├── form_checkbox_toggler_controller.js │ │ │ ├── form_disabler_controller.js │ │ │ ├── form_hint_url_controller.js │ │ │ ├── form_reset_controller.js │ │ │ ├── form_scroll_to_error_controller.js │ │ │ ├── form_select_hidder_controller.js │ │ │ ├── form_select_option_defaults_controller.js │ │ │ ├── form_select_options_controller.js │ │ │ ├── form_select_options_filter_controller.js │ │ │ ├── hover_controller.js │ │ │ ├── iframe_controller.js │ │ │ ├── index.js │ │ │ ├── menu_sorting_controller.js │ │ │ ├── preset_controller.js │ │ │ ├── show_all_controller.js │ │ │ ├── sortable_controller.js │ │ │ ├── table_row_controller.js │ │ │ ├── tabs_controller.js │ │ │ └── visibility_controller.js │ │ └── members │ │ │ ├── amount_updater_controller.js │ │ │ ├── application.js │ │ │ ├── calendar_controller.js │ │ │ ├── confirmation_controller.js │ │ │ ├── form_activity_controller.js │ │ │ ├── form_annual_fee_controller.js │ │ │ ├── form_checkbox_toggler_controller.js │ │ │ ├── form_choice_excluder_controller.js │ │ │ ├── form_choices_limiter_controller.js │ │ │ ├── form_min_value_controller.js │ │ │ ├── form_minmax_enforcer_controller.js │ │ │ ├── form_number_controls_controller.js │ │ │ ├── form_pricing_controller.js │ │ │ ├── form_submitter_controller.js │ │ │ ├── index.js │ │ │ ├── menu_controller.js │ │ │ ├── price_range_controller.js │ │ │ └── sticky_controller.js │ └── members.js ├── jobs │ ├── application_job.rb │ ├── baskets_basket_complements_updater_job.rb │ ├── bidding_round │ │ └── completion_job.rb │ ├── billing │ │ ├── invoice_cancellation_job.rb │ │ ├── invoice_overdue_notice_job.rb │ │ ├── invoice_overdue_notices_batch_job.rb │ │ ├── invoice_processor_job.rb │ │ ├── member_invoicer_job.rb │ │ ├── missing_activity_participations_invoicer_job.rb │ │ ├── sepa_direct_debit_order_uploader_job.rb │ │ └── shop_order_auto_invoicer_job.rb │ ├── concerns │ │ └── tenant_context.rb │ ├── delivery_baskets_updater_job.rb │ ├── delivery_cycle_baskets_updater_job.rb │ ├── membership_future_billing_job.rb │ ├── membership_open_renewal_job.rb │ ├── membership_renewal_job.rb │ ├── newsletter │ │ └── delivery_process_job.rb │ ├── postmark │ │ └── webhook_handler_job.rb │ ├── scheduled │ │ ├── base_job.rb │ │ ├── billing_local_currency_payments_processor_job.rb │ │ ├── billing_members_invoicer_job.rb │ │ ├── billing_payments_processor_job.rb │ │ ├── billing_sepa_direct_debit_orders_uploader_job.rb │ │ ├── billing_shop_orders_auto_invoicer_job.rb │ │ ├── billing_snapshot_job.rb │ │ ├── chores_job.rb │ │ ├── newsletters_sender_job.rb │ │ ├── notifier_daily_job.rb │ │ ├── notifier_hourly_job.rb │ │ └── postmark_sync_suppressions_job.rb │ └── tenant_switch_each_job.rb ├── mailer_previews │ ├── absence_mailer_preview.rb │ ├── activity_mailer_preview.rb │ ├── admin_mailer_preview.rb │ ├── bidding_round_mailer_preview.rb │ ├── concerns │ │ └── shared_data_preview.rb │ ├── invoice_mailer_preview.rb │ ├── member_mailer_preview.rb │ ├── membership_mailer_preview.rb │ ├── newsletter_mailer_preview.rb │ └── session_mailer_preview.rb ├── mailers │ ├── absence_mailer.rb │ ├── activity_mailer.rb │ ├── admin_mailer.rb │ ├── application_mailer.rb │ ├── bidding_round_mailer.rb │ ├── concerns │ │ └── templatable.rb │ ├── invoice_mailer.rb │ ├── member_mailer.rb │ ├── membership_mailer.rb │ ├── newsletter_mailer.rb │ ├── session_mailer.rb │ └── support_mailer.rb ├── models │ ├── ability.rb │ ├── absence.rb │ ├── absence │ │ ├── admin_notifications.rb │ │ └── period.rb │ ├── activity.rb │ ├── activity │ │ ├── availability.rb │ │ └── presetable.rb │ ├── activity_participation.rb │ ├── activity_participation │ │ └── carpooling.rb │ ├── activity_participation_demanded.rb │ ├── activity_participation_group.rb │ ├── activity_preset.rb │ ├── admin.rb │ ├── announcement.rb │ ├── annual_fee.rb │ ├── application_record.rb │ ├── attachment.rb │ ├── audit.rb │ ├── basket.rb │ ├── basket_complement.rb │ ├── basket_complement_count.rb │ ├── basket_content.rb │ ├── basket_content │ │ └── product.rb │ ├── basket_counts.rb │ ├── basket_shift.rb │ ├── basket_size.rb │ ├── baskets_basket_complement.rb │ ├── bidding_round.rb │ ├── bidding_round │ │ └── pledge.rb │ ├── billing.rb │ ├── billing │ │ ├── bas.rb │ │ ├── camt_file.rb │ │ ├── ebics.rb │ │ ├── ebics_mock.rb │ │ ├── epc_qr_code.rb │ │ ├── invoicer.rb │ │ ├── invoicer_future.rb │ │ ├── invoicer_new_member_fee.rb │ │ ├── invoicer_share.rb │ │ ├── mt_file.rb │ │ ├── payments_processor.rb │ │ ├── payments_redistributor.rb │ │ ├── scor_reference.rb │ │ ├── sepa_direct_debit.rb │ │ ├── snapshot.rb │ │ ├── swiss_qr_code.rb │ │ └── swiss_qr_reference.rb │ ├── checker │ │ ├── delivery_basket_content_avg_prices.rb │ │ ├── membership_price.rb │ │ └── newsletter_stale_processing.rb │ ├── concerns │ │ ├── .keep │ │ ├── auditable.rb │ │ ├── bulk_activity_ids_insert.rb │ │ ├── bulk_dates_insert.rb │ │ ├── discardable.rb │ │ ├── has_attachments.rb │ │ ├── has_comment.rb │ │ ├── has_currency.rb │ │ ├── has_date.rb │ │ ├── has_description.rb │ │ ├── has_emails.rb │ │ ├── has_fiscal_year.rb │ │ ├── has_iban.rb │ │ ├── has_language.rb │ │ ├── has_name.rb │ │ ├── has_note.rb │ │ ├── has_phones.rb │ │ ├── has_price.rb │ │ ├── has_public_name.rb │ │ ├── has_sessions.rb │ │ ├── has_social_network_urls.rb │ │ ├── has_state.rb │ │ ├── has_visibility.rb │ │ ├── liquidable.rb │ │ ├── normalized_string.rb │ │ ├── translated_attributes.rb │ │ └── translated_rich_texts.rb │ ├── current.rb │ ├── delivery.rb │ ├── delivery_cycle.rb │ ├── depot.rb │ ├── depot_group.rb │ ├── email_suppression.rb │ ├── error.rb │ ├── fiscal_year.rb │ ├── handbook.rb │ ├── invalid_transition_error.rb │ ├── invoice.rb │ ├── invoice_item.rb │ ├── invoice_overdue_notice.rb │ ├── invoice_total.rb │ ├── invoices_pdf_zipper.rb │ ├── liquid │ │ ├── absence_drop.rb │ │ ├── activity_drop.rb │ │ ├── activity_participation_drop.rb │ │ ├── admin_absence_drop.rb │ │ ├── admin_activity_participation_drop.rb │ │ ├── admin_basket_drop.rb │ │ ├── admin_delivery_drop.rb │ │ ├── admin_depot_drop.rb │ │ ├── admin_drop.rb │ │ ├── admin_member_drop.rb │ │ ├── admin_membership_drop.rb │ │ ├── basket_complement_drop.rb │ │ ├── basket_content_drop.rb │ │ ├── basket_drop.rb │ │ ├── basket_shift_drop.rb │ │ ├── basket_size_drop.rb │ │ ├── bidding_round_drop.rb │ │ ├── bidding_round_pledge_drop.rb │ │ ├── button_block.rb │ │ ├── content_block.rb │ │ ├── data_preview.rb │ │ ├── delivery_cycle_drop.rb │ │ ├── delivery_drop.rb │ │ ├── depot_drop.rb │ │ ├── email_suppression_drop.rb │ │ ├── highlight_block.rb │ │ ├── highlight_list_block.rb │ │ ├── invoice_drop.rb │ │ ├── lowlight_block.rb │ │ ├── member_drop.rb │ │ ├── membership_drop.rb │ │ ├── organization_drop.rb │ │ └── payment_drop.rb │ ├── local_currency │ │ └── radis.rb │ ├── mail_template.rb │ ├── member.rb │ ├── member_registration.rb │ ├── members_basket_complement.rb │ ├── membership.rb │ ├── membership_baskets_updater.rb │ ├── membership_pricing.rb │ ├── membership_renewal.rb │ ├── memberships_basket_complement.rb │ ├── memberships_renewal.rb │ ├── new_member_fee.rb │ ├── newsletter.rb │ ├── newsletter │ │ ├── audience.rb │ │ ├── block.rb │ │ ├── delivery.rb │ │ ├── segment.rb │ │ └── template.rb │ ├── notifier.rb │ ├── organization.rb │ ├── organization │ │ ├── absence_feature.rb │ │ ├── activity_feature.rb │ │ ├── basket_price_extra_feature.rb │ │ ├── bidding_round_feature.rb │ │ ├── billing.rb │ │ ├── local_currency_feature.rb │ │ ├── new_member_fee_feature.rb │ │ └── shop_feature.rb │ ├── other.rb │ ├── payment.rb │ ├── payment_total.rb │ ├── pdf │ │ ├── base.rb │ │ ├── delivery.rb │ │ ├── invoice.rb │ │ ├── invoice_cancellation_stamp.rb │ │ └── shop │ │ │ └── delivery.rb │ ├── permission.rb │ ├── qr_code.rb │ ├── session.rb │ ├── share.rb │ ├── shop │ │ ├── delivery_total.rb │ │ ├── null_producer.rb │ │ ├── order.rb │ │ ├── order_item.rb │ │ ├── producer.rb │ │ ├── product.rb │ │ ├── product_variant.rb │ │ ├── special_delivery.rb │ │ └── tag.rb │ ├── social_network.rb │ ├── spam_detector.rb │ ├── support │ │ └── ticket.rb │ ├── system.rb │ ├── update.rb │ └── xlsx │ │ ├── absence.rb │ │ ├── base.rb │ │ ├── basket_content.rb │ │ ├── billing.rb │ │ ├── delivery.rb │ │ └── shop │ │ └── order_item.rb └── views │ ├── active_admin │ ├── _flash_messages.html.erb │ ├── _html_head.html.erb │ ├── _page_header.html.erb │ ├── _sidebar.html.erb │ ├── _site_footer.html.erb │ ├── _site_header.html.erb │ ├── attachments │ │ ├── _form.html.arb │ │ └── _panel.html.arb │ ├── basket_contents │ │ ├── _duplicate_all_from.html.erb │ │ ├── _duplicate_all_to.html.erb │ │ └── _prices.html.arb │ ├── deliveries │ │ └── _baskets.html.arb │ ├── kaminari │ │ ├── _gap.html.erb │ │ ├── _next_page.html.erb │ │ ├── _page.html.erb │ │ ├── _paginator.html.erb │ │ └── _prev_page.html.erb │ ├── page │ │ ├── _activity_participations_count.html.arb │ │ ├── _members_count.html.arb │ │ ├── _memberships_count.html.arb │ │ └── _onboarding.html.arb │ ├── payments │ │ └── _import.html.erb │ ├── resource │ │ ├── _bulk_dates.html.arb │ │ ├── _index_blank_slate.html.erb │ │ ├── _index_empty_results.html.erb │ │ ├── _index_table_actions_default.html.erb │ │ ├── _invoice_preview.html.erb │ │ └── _public_name.html.arb │ └── shared │ │ └── _resource_comments.html.erb │ ├── active_storage │ └── blobs │ │ └── _blob.html.erb │ ├── activity_participations_calendar │ └── show.ics.ruby │ ├── admin_mailer │ ├── delivery_list_email.de.liquid │ ├── delivery_list_email.en.liquid │ ├── delivery_list_email.fr.liquid │ ├── delivery_list_email.it.liquid │ ├── delivery_list_email.nl.liquid │ ├── depot_delivery_list_email.de.liquid │ ├── depot_delivery_list_email.en.liquid │ ├── depot_delivery_list_email.fr.liquid │ ├── depot_delivery_list_email.it.liquid │ ├── depot_delivery_list_email.nl.liquid │ ├── invitation_email.de.liquid │ ├── invitation_email.en.liquid │ ├── invitation_email.fr.liquid │ ├── invitation_email.it.liquid │ ├── invitation_email.nl.liquid │ ├── invoice_overpaid_email.de.liquid │ ├── invoice_overpaid_email.en.liquid │ ├── invoice_overpaid_email.fr.liquid │ ├── invoice_overpaid_email.it.liquid │ ├── invoice_overpaid_email.nl.liquid │ ├── invoice_third_overdue_notice_email.de.liquid │ ├── invoice_third_overdue_notice_email.en.liquid │ ├── invoice_third_overdue_notice_email.fr.liquid │ ├── invoice_third_overdue_notice_email.it.liquid │ ├── invoice_third_overdue_notice_email.nl.liquid │ ├── memberships_renewal_pending_email.de.liquid │ ├── memberships_renewal_pending_email.en.liquid │ ├── memberships_renewal_pending_email.fr.liquid │ ├── memberships_renewal_pending_email.it.liquid │ ├── memberships_renewal_pending_email.nl.liquid │ ├── new_absence_email.de.liquid │ ├── new_absence_email.en.liquid │ ├── new_absence_email.fr.liquid │ ├── new_absence_email.it.liquid │ ├── new_absence_email.nl.liquid │ ├── new_activity_participation_email.de.liquid │ ├── new_activity_participation_email.en.liquid │ ├── new_activity_participation_email.fr.liquid │ ├── new_activity_participation_email.it.liquid │ ├── new_activity_participation_email.nl.liquid │ ├── new_email_suppression_email.de.liquid │ ├── new_email_suppression_email.en.liquid │ ├── new_email_suppression_email.fr.liquid │ ├── new_email_suppression_email.it.liquid │ ├── new_email_suppression_email.nl.liquid │ ├── new_registration_email.de.liquid │ ├── new_registration_email.en.liquid │ ├── new_registration_email.fr.liquid │ ├── new_registration_email.it.liquid │ ├── new_registration_email.nl.liquid │ ├── payment_reversal_email.de.liquid │ ├── payment_reversal_email.en.liquid │ ├── payment_reversal_email.fr.liquid │ ├── payment_reversal_email.it.liquid │ └── payment_reversal_email.nl.liquid │ ├── handbook │ ├── absences.de.md.erb │ ├── absences.en.md.erb │ ├── absences.fr.md.erb │ ├── absences.it.md.erb │ ├── absences.nl.md.erb │ ├── activity.de.md.erb │ ├── activity.en.md.erb │ ├── activity.fr.md.erb │ ├── activity.it.md.erb │ ├── activity.nl.md.erb │ ├── basket_price_extra.de.md.erb │ ├── basket_price_extra.en.md.erb │ ├── basket_price_extra.fr.md.erb │ ├── basket_price_extra.it.md.erb │ ├── basket_price_extra.nl.md.erb │ ├── bidding_round.de.md.erb │ ├── bidding_round.en.md.erb │ ├── bidding_round.fr.md.erb │ ├── bidding_round.it.md.erb │ ├── bidding_round.nl.md.erb │ ├── billing.de.md.erb │ ├── billing.en.md.erb │ ├── billing.fr.md.erb │ ├── billing.it.md.erb │ ├── billing.nl.md.erb │ ├── compliance.de.md.erb │ ├── compliance.en.md.erb │ ├── compliance.fr.md.erb │ ├── compliance.it.md.erb │ ├── compliance.nl.md.erb │ ├── deliveries.de.md.erb │ ├── deliveries.en.md.erb │ ├── deliveries.fr.md.erb │ ├── deliveries.it.md.erb │ ├── deliveries.nl.md.erb │ ├── getting_started.de.md.erb │ ├── getting_started.en.md.erb │ ├── getting_started.fr.md.erb │ ├── getting_started.it.md.erb │ ├── getting_started.nl.md.erb │ ├── local_currency.de.md.erb │ ├── local_currency.en.md.erb │ ├── local_currency.fr.md.erb │ ├── local_currency.it.md.erb │ ├── local_currency.nl.md.erb │ ├── members.de.md.erb │ ├── members.en.md.erb │ ├── members.fr.md.erb │ ├── members.it.md.erb │ ├── members.nl.md.erb │ ├── membership_renewal.de.md.erb │ ├── membership_renewal.en.md.erb │ ├── membership_renewal.fr.md.erb │ ├── membership_renewal.it.md.erb │ ├── membership_renewal.nl.md.erb │ ├── new_member_fee.de.md.erb │ ├── new_member_fee.en.md.erb │ ├── new_member_fee.fr.md.erb │ ├── new_member_fee.it.md.erb │ ├── new_member_fee.nl.md.erb │ ├── newsletters.de.md.erb │ ├── newsletters.en.md.erb │ ├── newsletters.fr.md.erb │ ├── newsletters.it.md.erb │ ├── newsletters.nl.md.erb │ ├── shop.de.md.erb │ ├── shop.en.md.erb │ ├── shop.fr.md.erb │ ├── shop.it.md.erb │ └── shop.nl.md.erb │ ├── layouts │ ├── active_admin.html.erb │ ├── active_admin_logged_out.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ ├── members.html.erb │ └── members │ │ ├── _dark_mode_switch.html.erb │ │ ├── _flashes.html.erb │ │ ├── _footer.html.erb │ │ └── _header.html.erb │ ├── mail_templates │ ├── absence_basket_shifted.de.liquid │ ├── absence_basket_shifted.en.liquid │ ├── absence_basket_shifted.fr.liquid │ ├── absence_basket_shifted.it.liquid │ ├── absence_basket_shifted.nl.liquid │ ├── absence_created.de.liquid │ ├── absence_created.en.liquid │ ├── absence_created.fr.liquid │ ├── absence_created.it.liquid │ ├── absence_created.nl.liquid │ ├── activity_participation_rejected.de.liquid │ ├── activity_participation_rejected.en.liquid │ ├── activity_participation_rejected.fr.liquid │ ├── activity_participation_rejected.it.liquid │ ├── activity_participation_rejected.nl.liquid │ ├── activity_participation_reminder.de.liquid │ ├── activity_participation_reminder.en.liquid │ ├── activity_participation_reminder.fr.liquid │ ├── activity_participation_reminder.it.liquid │ ├── activity_participation_reminder.nl.liquid │ ├── activity_participation_validated.de.liquid │ ├── activity_participation_validated.en.liquid │ ├── activity_participation_validated.fr.liquid │ ├── activity_participation_validated.it.liquid │ ├── activity_participation_validated.nl.liquid │ ├── bidding_round_completed.de.liquid │ ├── bidding_round_completed.en.liquid │ ├── bidding_round_completed.fr.liquid │ ├── bidding_round_completed.it.liquid │ ├── bidding_round_completed.nl.liquid │ ├── bidding_round_failed.de.liquid │ ├── bidding_round_failed.en.liquid │ ├── bidding_round_failed.fr.liquid │ ├── bidding_round_failed.it.liquid │ ├── bidding_round_failed.nl.liquid │ ├── bidding_round_opened.de.liquid │ ├── bidding_round_opened.en.liquid │ ├── bidding_round_opened.fr.liquid │ ├── bidding_round_opened.it.liquid │ ├── bidding_round_opened.nl.liquid │ ├── bidding_round_opened_reminder.de.liquid │ ├── bidding_round_opened_reminder.en.liquid │ ├── bidding_round_opened_reminder.fr.liquid │ ├── bidding_round_opened_reminder.it.liquid │ ├── bidding_round_opened_reminder.nl.liquid │ ├── invoice_cancelled.de.liquid │ ├── invoice_cancelled.en.liquid │ ├── invoice_cancelled.fr.liquid │ ├── invoice_cancelled.it.liquid │ ├── invoice_cancelled.nl.liquid │ ├── invoice_created.de.liquid │ ├── invoice_created.en.liquid │ ├── invoice_created.fr.liquid │ ├── invoice_created.it.liquid │ ├── invoice_created.nl.liquid │ ├── invoice_overdue_notice.de.liquid │ ├── invoice_overdue_notice.en.liquid │ ├── invoice_overdue_notice.fr.liquid │ ├── invoice_overdue_notice.it.liquid │ ├── invoice_overdue_notice.nl.liquid │ ├── member_activated.de.liquid │ ├── member_activated.en.liquid │ ├── member_activated.fr.liquid │ ├── member_activated.it.liquid │ ├── member_activated.nl.liquid │ ├── member_validated.de.liquid │ ├── member_validated.en.liquid │ ├── member_validated.fr.liquid │ ├── member_validated.it.liquid │ ├── member_validated.nl.liquid │ ├── membership_final_basket.de.liquid │ ├── membership_final_basket.en.liquid │ ├── membership_final_basket.fr.liquid │ ├── membership_final_basket.it.liquid │ ├── membership_final_basket.nl.liquid │ ├── membership_first_basket.de.liquid │ ├── membership_first_basket.en.liquid │ ├── membership_first_basket.fr.liquid │ ├── membership_first_basket.it.liquid │ ├── membership_first_basket.nl.liquid │ ├── membership_initial_basket.de.liquid │ ├── membership_initial_basket.en.liquid │ ├── membership_initial_basket.fr.liquid │ ├── membership_initial_basket.it.liquid │ ├── membership_initial_basket.nl.liquid │ ├── membership_last_basket.de.liquid │ ├── membership_last_basket.en.liquid │ ├── membership_last_basket.fr.liquid │ ├── membership_last_basket.it.liquid │ ├── membership_last_basket.nl.liquid │ ├── membership_last_trial_basket.de.liquid │ ├── membership_last_trial_basket.en.liquid │ ├── membership_last_trial_basket.fr.liquid │ ├── membership_last_trial_basket.it.liquid │ ├── membership_last_trial_basket.nl.liquid │ ├── membership_renewal.de.liquid │ ├── membership_renewal.en.liquid │ ├── membership_renewal.fr.liquid │ ├── membership_renewal.it.liquid │ ├── membership_renewal.nl.liquid │ ├── membership_renewal_reminder.de.liquid │ ├── membership_renewal_reminder.en.liquid │ ├── membership_renewal_reminder.fr.liquid │ ├── membership_renewal_reminder.it.liquid │ ├── membership_renewal_reminder.nl.liquid │ ├── membership_second_last_trial_basket.de.liquid │ ├── membership_second_last_trial_basket.en.liquid │ ├── membership_second_last_trial_basket.fr.liquid │ ├── membership_second_last_trial_basket.it.liquid │ ├── membership_second_last_trial_basket.nl.liquid │ └── preview.js.erb │ ├── mailers │ └── content.html.erb │ ├── members │ ├── absences │ │ ├── _absence.html.erb │ │ └── index.html.erb │ ├── accounts │ │ ├── edit.html.erb │ │ └── show.html.erb │ ├── activities │ │ └── index.rss.builder │ ├── activity_participations │ │ ├── _activity_participation.html.erb │ │ └── index.html.erb │ ├── basket_shifts │ │ └── new.html.erb │ ├── baskets │ │ ├── _basket.html.erb │ │ └── edit.html.erb │ ├── bidding_round │ │ └── pledges │ │ │ └── new.html.erb │ ├── billing │ │ ├── _line.html.erb │ │ └── index.html.erb │ ├── calendars │ │ ├── _subscribe_button.html.erb │ │ └── show.ics.ruby │ ├── contact_sharings │ │ └── show.html.erb │ ├── deliveries │ │ └── index.html.erb │ ├── infos │ │ └── show.html.erb │ ├── members │ │ ├── _pricing.html.erb │ │ ├── form_modes │ │ │ ├── _membership.html.erb │ │ │ └── _shop.html.erb │ │ ├── new.html.erb │ │ ├── new.turbo_stream.erb │ │ └── welcome.html.erb │ ├── membership_renewals │ │ └── new.html.erb │ ├── memberships │ │ ├── _membership.html.erb │ │ ├── edit.html.erb │ │ └── index.html.erb │ ├── newsletter_deliveries │ │ ├── _show_more.html.erb │ │ ├── index.html.erb │ │ ├── index.turbo_stream.erb │ │ └── show.html.erb │ ├── newsletter_subscriptions │ │ ├── create.html.erb │ │ ├── destroy.html.erb │ │ └── invalid.html.erb │ ├── newsletters │ │ └── _newsletter.html.erb │ ├── sessions │ │ └── new.html.erb │ └── shop │ │ ├── order_items │ │ └── create.turbo_stream.erb │ │ ├── orders │ │ ├── _cart.html.erb │ │ ├── _finalized_order.html.erb │ │ ├── _order.html.erb │ │ ├── _shop_depot.html.erb │ │ ├── confirm.turbo_stream.erb │ │ ├── show.html.erb │ │ ├── show.turbo_stream.erb │ │ └── update.turbo_stream.erb │ │ ├── products │ │ ├── _product.html.erb │ │ ├── _tag.html.erb │ │ ├── _variant.html.erb │ │ └── index.html.erb │ │ └── shared │ │ └── _header.html.erb │ ├── newsletter_templates │ ├── next_delivery.de.liquid │ ├── next_delivery.en.liquid │ ├── next_delivery.fr.liquid │ ├── next_delivery.it.liquid │ ├── next_delivery.nl.liquid │ ├── simple.de.liquid │ ├── simple.en.liquid │ ├── simple.fr.liquid │ ├── simple.it.liquid │ └── simple.nl.liquid │ ├── session_mailer │ ├── new_admin_session_email.de.liquid │ ├── new_admin_session_email.en.liquid │ ├── new_admin_session_email.fr.liquid │ ├── new_admin_session_email.it.liquid │ ├── new_admin_session_email.nl.liquid │ ├── new_member_session_email.de.liquid │ ├── new_member_session_email.en.liquid │ ├── new_member_session_email.fr.liquid │ ├── new_member_session_email.it.liquid │ └── new_member_session_email.nl.liquid │ ├── sessions │ └── new.html.erb │ ├── support_mailer │ └── ticket_email.text.erb │ └── updates │ ├── _20210526_new_announcement_feature.md.erb │ ├── _20210528_last_trial_basket_mail_template.md.erb │ ├── _20210807_automatic_membership_outdated_invoice_cancelation.md.erb │ ├── _20211019_new_members_section_design.md.erb │ ├── _20211227_public_names.md.erb │ ├── _20211230_handbook.md.erb │ ├── _20220108_absence_extra_text.md.erb │ ├── _20220204_deliveries_cycles.md.erb │ ├── _20220211_shop.md.erb │ ├── _20220218_basket_price_extra.md.erb │ ├── _20220303_permissions.md.erb │ ├── _20220304_admin_invoice_third_overdue_notice.md.erb │ ├── _20220506_basket_content_pricing.md.erb │ ├── _20220909_billing_audit.md.erb │ ├── _20220929_billing_email.md.erb │ ├── _20221111_send_closed_invoice.md.erb │ ├── _20221202_basket_form_details_and_form_modes.md.erb │ ├── _20221210_shop_special_deliveries.md.erb │ ├── _20221216_membership_update.md.erb │ ├── _20221218_basket_content_distribution_mode.md.erb │ ├── _20221223_activity_participations_billing.md.erb │ ├── _20230105_depot_public_note.md.erb │ ├── _20230225_newsletters.md.erb │ ├── _20230324_image_support.md.erb │ ├── _20230411_newsletter_segment.md.erb │ ├── _20230430_member_shop_depot.md.erb │ ├── _20230512_membership_complement_update.md.erb │ ├── _20230526_shop_order_percentage.md.erb │ ├── _20230602_admin_delivery_list.md.erb │ ├── _20230609_depot_order.md.erb │ ├── _20230616_depot_delivery_sheets_mode.md.erb │ ├── _20230624_membership_pricing.md.erb │ ├── _20230630_basket_contents_duplication.md.erb │ ├── _20230806_invoice_cancelled_mail_template.md.erb │ ├── _20230812_shop_order_automatic_invoicing.md.erb │ ├── _20230825_membership_renewed_attributes.md.erb │ ├── _20230915_note_for_absence_and_activity_participation.md.erb │ ├── _20231020_shop_display_product_in_delivery_sheets.md.erb │ ├── _20231021_shop_billing_xlsx.md.erb │ ├── _20231103_new_member_fee.md.erb │ ├── _20231125_delivery_cycles_visibility.md.erb │ ├── _20231226_basket_complement_activity_participation.md.erb │ ├── _20240223_absences_included.md.erb │ ├── _20240301_activity_participations_form.md.erb │ ├── _20240316_billing_year_division.md.erb │ ├── _20240427_discard.md.erb │ ├── _20240510_newsletter_deliveries.md.erb │ ├── _20240622_activeadmin_4.de.md.erb │ ├── _20240622_activeadmin_4.en.md.erb │ ├── _20240622_activeadmin_4.fr.md.erb │ ├── _20240622_activeadmin_4.it.md.erb │ ├── _20240622_activeadmin_4.nl.md.erb │ ├── _20240906_csa_admin.de.md.erb │ ├── _20240906_csa_admin.en.md.erb │ ├── _20240906_csa_admin.fr.md.erb │ ├── _20240906_csa_admin.it.md.erb │ ├── _20240906_csa_admin.nl.md.erb │ ├── _20240914_activity_invoicing.de.md.erb │ ├── _20240914_activity_invoicing.en.md.erb │ ├── _20240914_activity_invoicing.fr.md.erb │ ├── _20240914_activity_invoicing.it.md.erb │ ├── _20240914_activity_invoicing.nl.md.erb │ ├── _20240914_future_billing.de.md.erb │ ├── _20240914_future_billing.en.md.erb │ ├── _20240914_future_billing.fr.md.erb │ ├── _20240914_future_billing.it.md.erb │ ├── _20240914_future_billing.nl.md.erb │ ├── _20241103_sqlite.de.md.erb │ ├── _20241103_sqlite.en.md.erb │ ├── _20241103_sqlite.fr.md.erb │ ├── _20241103_sqlite.it.md.erb │ ├── _20241103_sqlite.nl.md.erb │ ├── _20241117_re_registration_and_audits.de.md.erb │ ├── _20241117_re_registration_and_audits.en.md.erb │ ├── _20241117_re_registration_and_audits.fr.md.erb │ ├── _20241117_re_registration_and_audits.it.md.erb │ ├── _20241117_re_registration_and_audits.nl.md.erb │ ├── _20241123_new_membership_mail_templates.de.md.erb │ ├── _20241123_new_membership_mail_templates.en.md.erb │ ├── _20241123_new_membership_mail_templates.fr.md.erb │ ├── _20241123_new_membership_mail_templates.it.md.erb │ ├── _20241123_new_membership_mail_templates.nl.md.erb │ ├── _20241129_member_calendar.de.md.erb │ ├── _20241129_member_calendar.en.md.erb │ ├── _20241129_member_calendar.fr.md.erb │ ├── _20241129_member_calendar.it.md.erb │ ├── _20241129_member_calendar.nl.md.erb │ ├── _20241226_social_networks.de.md.erb │ ├── _20241226_social_networks.en.md.erb │ ├── _20241226_social_networks.fr.md.erb │ ├── _20241226_social_networks.it.md.erb │ ├── _20241226_social_networks.nl.md.erb │ ├── _20250208_invoice_attachments.de.md.erb │ ├── _20250208_invoice_attachments.en.md.erb │ ├── _20250208_invoice_attachments.fr.md.erb │ ├── _20250208_invoice_attachments.it.md.erb │ ├── _20250208_invoice_attachments.nl.md.erb │ ├── _20250307_hetzner.de.md.erb │ ├── _20250307_hetzner.en.md.erb │ ├── _20250307_hetzner.fr.md.erb │ ├── _20250307_hetzner.it.md.erb │ ├── _20250307_hetzner.nl.md.erb │ ├── _20250316_basket_content_manual_mode.de.md.erb │ ├── _20250316_basket_content_manual_mode.en.md.erb │ ├── _20250316_basket_content_manual_mode.fr.md.erb │ ├── _20250316_basket_content_manual_mode.it.md.erb │ ├── _20250316_basket_content_manual_mode.nl.md.erb │ ├── _20250411_different_billing_info.de.md.erb │ ├── _20250411_different_billing_info.en.md.erb │ ├── _20250411_different_billing_info.fr.md.erb │ ├── _20250411_different_billing_info.it.md.erb │ ├── _20250411_different_billing_info.nl.md.erb │ ├── _20250502_newsletters_scheduling.de.md.erb │ ├── _20250502_newsletters_scheduling.en.md.erb │ ├── _20250502_newsletters_scheduling.fr.md.erb │ ├── _20250502_newsletters_scheduling.it.md.erb │ ├── _20250502_newsletters_scheduling.nl.md.erb │ ├── _20250620_basket_shift.de.md.erb │ ├── _20250620_basket_shift.en.md.erb │ ├── _20250620_basket_shift.fr.md.erb │ ├── _20250620_basket_shift.it.md.erb │ ├── _20250620_basket_shift.nl.md.erb │ ├── _20250628_newsletters_member.de.md.erb │ ├── _20250628_newsletters_member.en.md.erb │ ├── _20250628_newsletters_member.fr.md.erb │ ├── _20250628_newsletters_member.it.md.erb │ ├── _20250628_newsletters_member.nl.md.erb │ ├── _20251010_support_ticket.de.md.erb │ ├── _20251010_support_ticket.en.md.erb │ ├── _20251010_support_ticket.fr.md.erb │ ├── _20251010_support_ticket.it.md.erb │ ├── _20251010_support_ticket.nl.md.erb │ ├── _20251129_delivery_cycles_week_range.de.md.erb │ ├── _20251129_delivery_cycles_week_range.en.md.erb │ ├── _20251129_delivery_cycles_week_range.fr.md.erb │ ├── _20251129_delivery_cycles_week_range.it.md.erb │ ├── _20251129_delivery_cycles_week_range.nl.md.erb │ ├── _20251206_second_last_trial_basket_mail_template.de.md.erb │ ├── _20251206_second_last_trial_basket_mail_template.en.md.erb │ ├── _20251206_second_last_trial_basket_mail_template.fr.md.erb │ ├── _20251206_second_last_trial_basket_mail_template.it.md.erb │ └── _20251206_second_last_trial_basket_mail_template.nl.md.erb ├── bin ├── brakeman ├── bundler-audit ├── ci ├── dev ├── docker-entrypoint ├── importmap ├── jobs ├── rails ├── rake ├── rubocop ├── setup └── thrust ├── config.ru ├── config ├── application.rb ├── appsignal.yml ├── boot.rb ├── brakeman.yml ├── bundler-audit.yml ├── cable.yml ├── ci.rb ├── credentials.yml.enc ├── credentials │ └── test.yml.enc ├── database.yml ├── deploy.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── importmap.rb ├── initializers │ ├── action_mailer.rb │ ├── active_admin.rb │ ├── active_admin_action_items.rb │ ├── active_admin_auto_link.rb │ ├── active_admin_filter_saver.rb │ ├── active_admin_filters.rb │ ├── active_admin_helpers.rb │ ├── active_admin_sidebar.rb │ ├── active_admin_table.rb │ ├── active_storage.rb │ ├── active_storage_job_tenant.rb │ ├── activestorage_pdf_preview.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── filter_parameter_logging.rb │ ├── formtastic.rb │ ├── i18n.rb │ ├── inflections.rb │ ├── inline_svg.rb │ ├── liquid.rb │ ├── logging.rb │ ├── lograge.rb │ ├── mime_types.rb │ ├── mission_control.rb │ ├── permissions_policy.rb │ ├── postmark.rb │ ├── ransack.rb │ ├── reactionview.rb │ ├── schema_dumper.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── solid_queue_shard.rb │ ├── tenant_middleware.rb │ ├── truemail.rb │ └── wrap_parameters.rb ├── locales │ ├── active_admin.yml │ ├── activemodel.yml │ ├── activerecord.yml │ ├── activities.yml │ ├── activity_participations.yml │ ├── admin.yml │ ├── admin_mailer.yml │ ├── announcements.yml │ ├── attributes.yml │ ├── basket_content.yml │ ├── bidding_rounds.yml │ ├── billing.yml │ ├── boolean.yml │ ├── date.yml │ ├── datetime.yml │ ├── delivery.yml │ ├── delivery_cycle.yml │ ├── errors.yml │ ├── features.yml │ ├── flash.yml │ ├── form_modes.yml │ ├── formtastic.yml │ ├── helpers.yml │ ├── invoices.yml │ ├── languages.yml │ ├── layouts.yml │ ├── local_currency.yml │ ├── mail_template.yml │ ├── member_order.yml │ ├── members.yml │ ├── newsletters.yml │ ├── number.yml │ ├── organization.yml │ ├── payments.yml │ ├── permissions.yml │ ├── session_mailer.yml │ ├── sessions.yml │ ├── shop.yml │ ├── shop_orders.yml │ ├── simple_form.yml │ ├── states.yml │ ├── support.yml │ ├── time.yml │ ├── units.yml │ └── views.yml ├── puma.rb ├── queue.yml ├── recurring.yml ├── routes.rb ├── storage.yml ├── tenant.yml └── tenant.yml.example ├── db ├── .keep ├── migrate │ ├── 20250116102119_add_unavailable_for_depot_ids_to_shop_special_deliveries.rb │ ├── 20250120121815_rename_remaning_trial_baskets_count.rb │ ├── 20250120123306_add_trial_baskets_count_to_members.rb │ ├── 20250120140229_trial_baskets_count_to_not_null.rb │ ├── 20250131152825_add_sepa_metadata_to_invoices.rb │ ├── 20250201102701_add_invoice_info_sepa_to_organizations.rb │ ├── 20250207083345_generalize_newsletter_attachments.rb │ ├── 20250207141051_remove_newsletter_id_from_attachments.rb │ ├── 20250214094847_add_annual_fee_support_member_only_to_organizations.rb │ ├── 20250322092212_add_invoice_document_names_to_organizations.rb │ ├── 20250328151339_add_ignored_at_to_payments.rb │ ├── 20250331173606_add_unique_index_on_members_sepa_mandate_id.rb │ ├── 20250404140157_add_billing_address_to_members.rb │ ├── 20250405095255_remove_delivery_address_from_members.rb │ ├── 20250413085715_add_invoice_names_to_delivery_cycles.rb │ ├── 20250418094535_add_names_to_depots.rb │ ├── 20250418102656_remove_name_from_depots.rb │ ├── 20250501134751_add_scheduled_at_to_newsletters.rb │ ├── 20250529104821_add_depots_form_details.rb │ ├── 20250606112848_add_basket_shifts.rb │ ├── 20250802151528_remove_sessions_token.rb │ ├── 20250808102230_remove_members_subdomain.rb │ ├── 20250809093255_add_api_token_to_org.rb │ ├── 20250809093728_change_null_api_token.rb │ ├── 20250810090129_add_postmark_credentials_to_org.rb │ ├── 20250811134422_add_bank_connection_and_credentials_to_orgs.rb │ ├── 20250814130215_add_bidding_rounds.rb │ ├── 20250827085809_add_bidding_round_opened_reminder_sent_at_to_memberships.rb │ ├── 20250828081839_add_membership_ids_to_newsletter_segments.rb │ ├── 20250919085103_add_currency_code_to_payments_and_invoices.rb │ ├── 20250919085104_make_currency_code_not_null.rb │ ├── 20250923122354_add_reversal_notification_sent_at_to_payments.rb │ ├── 20250930134241_add_basket_size_price_percentage_to_deliveries.rb │ ├── 20251002094515_add_origin_to_payments.rb │ ├── 20251002141841_add_sepa_direct_debit_order_to_invoices.rb │ ├── 20251005094111_rename_basket_price_to_basket_size_price.rb │ ├── 20251009060711_create_support_tickets.rb │ ├── 20251018071130_add_emails_to_support_tickets.rb │ ├── 20251018093415_add_local_currency.rb │ ├── 20251122094052_add_member_form_complement_quantities_to_organizations.rb │ ├── 20251122110430_rename_address_to_street.rb │ ├── 20251123130904_add_updated_at_indexes_to_baskets_and_activity_participations.rb │ ├── 20251128175516_add_week_numbers_range_to_delivery_cycles.rb │ ├── 20251129111012_change_admin_id_null_on_support_tickets.rb │ └── 20251206113505_add_second_last_trial_basket_sent_at_to_memberships.rb ├── queue_schema.rb ├── schema.rb └── seeds.rb ├── lib ├── active_admin │ └── filter_saver.rb ├── active_storage │ └── service │ │ ├── tenant_disk_service.rb │ │ └── tenant_s3_service.rb ├── assets │ ├── .keep │ ├── fonts │ │ ├── Helvetica.ttf │ │ ├── HelveticaBold.ttf │ │ ├── HelveticaBoldOblique.ttf │ │ ├── HelveticaLight.ttf │ │ ├── HelveticaLightOblique.ttf │ │ └── HelveticaOblique.ttf │ └── images │ │ ├── radis.png │ │ ├── scissor.png │ │ └── swiss_cross.png ├── postmark_wrapper.rb ├── rounding.rb ├── tasks │ ├── .keep │ ├── anonymizer.rake │ ├── bookmarks.rake │ ├── database.rake │ ├── development.rake │ ├── hostname.rake │ ├── lint.rake │ ├── litestream.rake │ ├── locales.rake │ ├── maintenance.rake │ ├── organizations.rake │ ├── postmark.rake │ ├── simpleicons.rake │ └── storage.rake ├── templates │ ├── bookmarks.html.erb │ └── erb │ │ └── scaffold │ │ └── _form.html.erb ├── tenant.rb └── tenant │ └── middleware.rb ├── log └── .keep ├── package.json ├── public ├── 400.html ├── 404.html ├── 406-unsupported-browser-de.html ├── 406-unsupported-browser-en.html ├── 406-unsupported-browser-fr.html ├── 406-unsupported-browser-it.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── icon.png ├── icon.svg ├── logo-text.png ├── maintenance.html └── robots.txt ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── activity_participations_calendar_controller_test.rb │ ├── api │ │ └── v1 │ │ │ ├── basket_contents_controller_test.rb │ │ │ ├── configurations_controller_test.rb │ │ │ └── members_controller_test.rb │ ├── members │ │ ├── activities_controller_test.rb │ │ ├── calendars_controller_test.rb │ │ └── newsletter_subscriptions_controller_test.rb │ └── postmark │ │ └── webhooks_controller_test.rb ├── fixtures │ ├── absences.yml │ ├── action_text │ │ └── rich_texts.yml │ ├── active_admin_comments.yml │ ├── active_storage │ │ ├── attachments.yml │ │ └── blobs.yml │ ├── activities.yml │ ├── activity_participations.yml │ ├── activity_presets.yml │ ├── admins.yml │ ├── basket_complements.yml │ ├── basket_content │ │ └── products.yml │ ├── basket_sizes.yml │ ├── baskets.yml │ ├── baskets_basket_complements.yml │ ├── bidding_round_pledges.yml │ ├── bidding_rounds.yml │ ├── deliveries.yml │ ├── delivery_cycles.yml │ ├── depots.yml │ ├── files │ │ ├── .keep │ │ ├── camt053.xml │ │ ├── camt053_reversal.xml │ │ ├── camt054.xml │ │ ├── camt054_ref_with_letters.xml │ │ ├── camt_invalid.xml │ │ ├── camt_wrong.xml │ │ ├── invoice.pdf │ │ ├── logo.png │ │ ├── mt940-reversal.mta │ │ ├── mt940.mt9 │ │ ├── mt940.mta │ │ ├── qrcode-check.png │ │ └── qrcode-test.png │ ├── invoice_items.yml │ ├── invoices.yml │ ├── members.yml │ ├── memberships.yml │ ├── memberships_basket_complements.yml │ ├── newsletter │ │ ├── blocks.yml │ │ ├── deliveries.yml │ │ └── templates.yml │ ├── newsletters.yml │ ├── organizations.yml │ ├── payments.yml │ ├── permissions.yml │ ├── sessions.yml │ └── shop │ │ ├── order_items.yml │ │ ├── orders.yml │ │ ├── producers.yml │ │ ├── product_variants.yml │ │ ├── products.yml │ │ └── special_deliveries.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── jobs │ ├── billing │ │ ├── invoice_overdue_notices_batch_job_test.rb │ │ └── missing_activity_participations_invoicer_job_test.rb │ ├── concerns │ │ └── tenant_context_test.rb │ ├── membership_renewal_job_test.rb │ └── scheduled │ │ └── billing_sepa_direct_debit_orders_uploader_job_test.rb ├── lib │ └── tenant_test.rb ├── mailers │ ├── .keep │ ├── absence_mailer_test.rb │ ├── activity_mailer_test.rb │ ├── admin_mailer_test.rb │ ├── bidding_round_mailer_test.rb │ ├── invoice_mailer_test.rb │ ├── member_mailer_test.rb │ ├── membership_mailer_test.rb │ ├── newsletter_mailer_test.rb │ ├── previews │ │ └── support_mailer_preview.rb │ ├── session_mailer_test.rb │ └── support_mailer_test.rb ├── models │ ├── .keep │ ├── ability_test.rb │ ├── absence │ │ ├── admin_notifications_test.rb │ │ └── period_test.rb │ ├── absence_test.rb │ ├── activity │ │ ├── availability_test.rb │ │ └── presetable_test.rb │ ├── activity_participation │ │ └── carpooling_test.rb │ ├── activity_participation_demanded_test.rb │ ├── activity_participation_group_test.rb │ ├── activity_participation_test.rb │ ├── activity_test.rb │ ├── admin_test.rb │ ├── announcement_test.rb │ ├── basket_complement_test.rb │ ├── basket_content_test.rb │ ├── basket_shift_test.rb │ ├── basket_size_test.rb │ ├── basket_test.rb │ ├── bidding_round │ │ └── pledge_test.rb │ ├── bidding_round_test.rb │ ├── billing │ │ ├── camt_file_test.rb │ │ ├── invoicer_acp_share_test.rb │ │ ├── invoicer_new_member_fee_test.rb │ │ ├── invoicer_test.rb │ │ ├── mt_file_test.rb │ │ ├── payment_redistributor_test.rb │ │ ├── score_reference_test.rb │ │ ├── sepa_direct_debit_test.rb │ │ ├── snapshot_test.rb │ │ ├── swiss_qr_code_test.rb │ │ └── swiss_qr_reference_test.rb │ ├── concerns │ │ ├── auditable_test.rb │ │ ├── has_currency_test.rb │ │ ├── has_public_name_test.rb │ │ ├── has_social_network_urls_test.rb │ │ └── normalized_string_test.rb │ ├── delivery_cycle_test.rb │ ├── delivery_test.rb │ ├── depot_test.rb │ ├── email_suppression_test.rb │ ├── fiscal_year_test.rb │ ├── invoice_overdue_notice_test.rb │ ├── invoice_test.rb │ ├── liquid │ │ └── data_preview_test.rb │ ├── local_currency │ │ └── radis_test.rb │ ├── mail_template_test.rb │ ├── member_registration_test.rb │ ├── member_test.rb │ ├── membership_baskets_updater_test.rb │ ├── membership_pricing_test.rb │ ├── membership_renewal_test.rb │ ├── membership_test.rb │ ├── newsletter │ │ ├── audience_test.rb │ │ ├── delivery_test.rb │ │ ├── segment_test.rb │ │ └── template_test.rb │ ├── newsletter_test.rb │ ├── notifier_test.rb │ ├── organization │ │ └── local_currency_feature_test.rb │ ├── organization_test.rb │ ├── payment_test.rb │ ├── pdf │ │ ├── delivery_test.rb │ │ ├── invoice_test.rb │ │ └── shop │ │ │ └── delivery_test.rb │ ├── permission_test.rb │ ├── session_test.rb │ ├── shop │ │ ├── order_item_test.rb │ │ ├── order_test.rb │ │ ├── producer_test.rb │ │ ├── product_test.rb │ │ └── special_delivery_test.rb │ ├── spam_detector_test.rb │ ├── support │ │ └── ticket_test.rb │ └── update_test.rb ├── shared │ └── bulk_dates_insert.rb ├── support │ ├── absences_helper.rb │ ├── activities_helper.rb │ ├── assertions.rb │ ├── basket_complements_helper.rb │ ├── basket_contents_helper.rb │ ├── basket_sizes_helper.rb │ ├── billing_helper.rb │ ├── delivery_cycles_helper.rb │ ├── depots_helper.rb │ ├── email_suppressions_helper.rb │ ├── flash_messages_helper.rb │ ├── invoices_helper.rb │ ├── mail_templates_helper.rb │ ├── members_helper.rb │ ├── memberships_helper.rb │ ├── newsletters_helper.rb │ ├── organizations_helper.rb │ ├── payments_helper.rb │ ├── postmark_helper.rb │ ├── postmark_mock_client.rb │ ├── prawn_image_stub.rb │ ├── qr_code_helper.rb │ ├── responses_helper.rb │ ├── sessions_helper.rb │ ├── shop_helper.rb │ └── ui_helper.rb ├── system │ ├── .keep │ ├── invoices_test.rb │ ├── mail_templates_test.rb │ ├── members │ │ ├── absences_test.rb │ │ ├── accounts_test.rb │ │ ├── activity_participations_test.rb │ │ ├── basket_shifs_test.rb │ │ ├── baskets_test.rb │ │ ├── bidding_rounds_test.rb │ │ ├── billing_test.rb │ │ ├── contact_sharing_test.rb │ │ ├── deliveries_test.rb │ │ ├── infos_test.rb │ │ ├── members_test.rb │ │ ├── membership_renewals_test.rb │ │ ├── memberships_test.rb │ │ ├── newsletter_deliveries_test.rb │ │ ├── newsletter_subscriptions_test.rb │ │ ├── sessions_test.rb │ │ ├── shop_orders_test.rb │ │ ├── shop_products_test.rb │ │ └── shop_test.rb │ ├── mission_control │ │ └── sessions_test.rb │ └── sessions_test.rb └── test_helper.rb ├── tmp └── .keep └── vendor ├── .powrc ├── assets └── stylesheets │ └── .keep └── javascript ├── @appsignal--core.js ├── @appsignal--javascript.js ├── @hotwired--stimulus.js ├── @joeattardi--emoji-button.js ├── @rails--request.js.js ├── @rails--ujs.js ├── @roderickhsiao--emoji-button-locale-data--dist--de.js ├── @roderickhsiao--emoji-button-locale-data--dist--fr.js ├── @roderickhsiao--emoji-button-locale-data--dist--it.js ├── @stimulus-components--sortable.js ├── codejar.js ├── flatpickr--dist--l10n--de.js ├── flatpickr--dist--l10n--fr.js ├── flatpickr--dist--l10n--it.js ├── flatpickr.js ├── flowbite.turbo.min.js ├── https.js ├── prismjs--components--prism-liquid.js ├── prismjs--components--prism-markup-templating.js ├── prismjs--components--prism-yaml.js ├── prismjs.js ├── sortablejs.js ├── throttle-debounce.js └── tslib.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.env.test -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.herb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.herb.yml -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.irbrc -------------------------------------------------------------------------------- /.kamal/hooks/docker-setup.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Docker set up on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /.kamal/hooks/post-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.kamal/hooks/post-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/post-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooted kamal-proxy on $KAMAL_HOSTS" 4 | -------------------------------------------------------------------------------- /.kamal/hooks/pre-build.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.kamal/hooks/pre-build.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-connect.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.kamal/hooks/pre-connect.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-deploy.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.kamal/hooks/pre-deploy.sample -------------------------------------------------------------------------------- /.kamal/hooks/pre-proxy-reboot.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Rebooting kamal-proxy on $KAMAL_HOSTS..." 4 | -------------------------------------------------------------------------------- /.kamal/secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.kamal/secrets -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 25 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/Rakefile -------------------------------------------------------------------------------- /app/admin/absence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/absence.rb -------------------------------------------------------------------------------- /app/admin/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/activity.rb -------------------------------------------------------------------------------- /app/admin/activity_participation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/activity_participation.rb -------------------------------------------------------------------------------- /app/admin/activity_preset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/activity_preset.rb -------------------------------------------------------------------------------- /app/admin/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/admin.rb -------------------------------------------------------------------------------- /app/admin/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/announcement.rb -------------------------------------------------------------------------------- /app/admin/audit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/audit.rb -------------------------------------------------------------------------------- /app/admin/basket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/basket.rb -------------------------------------------------------------------------------- /app/admin/basket_complement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/basket_complement.rb -------------------------------------------------------------------------------- /app/admin/basket_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/basket_content.rb -------------------------------------------------------------------------------- /app/admin/basket_content/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/basket_content/product.rb -------------------------------------------------------------------------------- /app/admin/basket_shift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/basket_shift.rb -------------------------------------------------------------------------------- /app/admin/basket_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/basket_size.rb -------------------------------------------------------------------------------- /app/admin/bidding_round.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/bidding_round.rb -------------------------------------------------------------------------------- /app/admin/bidding_round/pledge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/bidding_round/pledge.rb -------------------------------------------------------------------------------- /app/admin/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/comment.rb -------------------------------------------------------------------------------- /app/admin/components/columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/components/columns.rb -------------------------------------------------------------------------------- /app/admin/components/panel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/components/panel.rb -------------------------------------------------------------------------------- /app/admin/components/side_panel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/components/side_panel.rb -------------------------------------------------------------------------------- /app/admin/components/tabs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/components/tabs.rb -------------------------------------------------------------------------------- /app/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/dashboard.rb -------------------------------------------------------------------------------- /app/admin/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/delivery.rb -------------------------------------------------------------------------------- /app/admin/delivery_cycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/delivery_cycle.rb -------------------------------------------------------------------------------- /app/admin/depot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/depot.rb -------------------------------------------------------------------------------- /app/admin/depot_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/depot_group.rb -------------------------------------------------------------------------------- /app/admin/handbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/handbook.rb -------------------------------------------------------------------------------- /app/admin/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/invoice.rb -------------------------------------------------------------------------------- /app/admin/mail_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/mail_template.rb -------------------------------------------------------------------------------- /app/admin/member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/member.rb -------------------------------------------------------------------------------- /app/admin/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/membership.rb -------------------------------------------------------------------------------- /app/admin/newsletter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/newsletter.rb -------------------------------------------------------------------------------- /app/admin/newsletter/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/newsletter/delivery.rb -------------------------------------------------------------------------------- /app/admin/newsletter/segment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/newsletter/segment.rb -------------------------------------------------------------------------------- /app/admin/newsletter/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/newsletter/template.rb -------------------------------------------------------------------------------- /app/admin/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/organization.rb -------------------------------------------------------------------------------- /app/admin/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/payment.rb -------------------------------------------------------------------------------- /app/admin/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/permission.rb -------------------------------------------------------------------------------- /app/admin/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/session.rb -------------------------------------------------------------------------------- /app/admin/shop/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/shop/order.rb -------------------------------------------------------------------------------- /app/admin/shop/producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/shop/producer.rb -------------------------------------------------------------------------------- /app/admin/shop/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/shop/product.rb -------------------------------------------------------------------------------- /app/admin/shop/special_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/shop/special_delivery.rb -------------------------------------------------------------------------------- /app/admin/shop/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/shop/tag.rb -------------------------------------------------------------------------------- /app/admin/support/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/support/ticket.rb -------------------------------------------------------------------------------- /app/admin/updates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/admin/updates.rb -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/admin/canceled.de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/admin/canceled.de.png -------------------------------------------------------------------------------- /app/assets/images/admin/canceled.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/admin/canceled.en.png -------------------------------------------------------------------------------- /app/assets/images/admin/canceled.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/admin/canceled.fr.png -------------------------------------------------------------------------------- /app/assets/images/admin/canceled.it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/admin/canceled.it.png -------------------------------------------------------------------------------- /app/assets/images/admin/canceled.nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/admin/canceled.nl.png -------------------------------------------------------------------------------- /app/assets/images/icons/outline/bars-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/bars-3.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/car.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/check.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/clock.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/envelope.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/eye.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/file-csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/file-csv.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/file-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/file-pdf.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/file-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/file-up.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/gift.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/hashtag.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/home.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/key.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/language.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/link.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/map.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/minus.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/moon.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/phone.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/play.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/plus.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/redo-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/redo-off.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/redo.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/scale.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/sun.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/trash.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/truck.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/user.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/users.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/x-circle.svg -------------------------------------------------------------------------------- /app/assets/images/icons/outline/x-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/outline/x-mark.svg -------------------------------------------------------------------------------- /app/assets/images/icons/simpleicons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/simpleicons/x.svg -------------------------------------------------------------------------------- /app/assets/images/icons/solid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/icons/solid/logo.svg -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/facebook.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/instagram.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/linkedin.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/pinterest.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/signal.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/snapchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/snapchat.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/telegram.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/tiktok.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/whatsapp.png -------------------------------------------------------------------------------- /app/assets/images/simpleicons/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/images/simpleicons/x.png -------------------------------------------------------------------------------- /app/assets/stylesheets/mailer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/stylesheets/mailer.css -------------------------------------------------------------------------------- /app/assets/tailwind/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/application.css -------------------------------------------------------------------------------- /app/assets/tailwind/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/base.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/animation.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/buttons.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/codejar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/codejar.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/counts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/counts.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/filters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/filters.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/flatpickr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/flatpickr.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/markdown.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/members.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/members.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/panel.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/scopes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/scopes.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/table.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/tabs_nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/tabs_nav.css -------------------------------------------------------------------------------- /app/assets/tailwind/components/trix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/components/trix.css -------------------------------------------------------------------------------- /app/assets/tailwind/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/assets/tailwind/dark.css -------------------------------------------------------------------------------- /app/controllers/api/v1/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/api/v1/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/members_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/api/v1/members_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/billings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/billings_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/logos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/logos_controller.rb -------------------------------------------------------------------------------- /app/controllers/members/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/members/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/members/infos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/members/infos_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/helpers/absences_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/absences_helper.rb -------------------------------------------------------------------------------- /app/helpers/active_admin/counter_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/active_admin/counter_helper.rb -------------------------------------------------------------------------------- /app/helpers/active_admin/handbook_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/active_admin/handbook_helper.rb -------------------------------------------------------------------------------- /app/helpers/active_admin/sidebar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/active_admin/sidebar_helper.rb -------------------------------------------------------------------------------- /app/helpers/activities_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/activities_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/audits_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/audits_helper.rb -------------------------------------------------------------------------------- /app/helpers/basket_contents_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/basket_contents_helper.rb -------------------------------------------------------------------------------- /app/helpers/baskets_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/baskets_helper.rb -------------------------------------------------------------------------------- /app/helpers/bidding_rounds_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/bidding_rounds_helper.rb -------------------------------------------------------------------------------- /app/helpers/calendars_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/calendars_helper.rb -------------------------------------------------------------------------------- /app/helpers/currency_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/currency_helper.rb -------------------------------------------------------------------------------- /app/helpers/dashboard_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/dashboard_helper.rb -------------------------------------------------------------------------------- /app/helpers/delivery_cycles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/delivery_cycles_helper.rb -------------------------------------------------------------------------------- /app/helpers/forms_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/forms_helper.rb -------------------------------------------------------------------------------- /app/helpers/icons_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/icons_helper.rb -------------------------------------------------------------------------------- /app/helpers/invoices_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/invoices_helper.rb -------------------------------------------------------------------------------- /app/helpers/layouts_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/layouts_helper.rb -------------------------------------------------------------------------------- /app/helpers/links_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/links_helper.rb -------------------------------------------------------------------------------- /app/helpers/members_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/members_helper.rb -------------------------------------------------------------------------------- /app/helpers/memberships_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/memberships_helper.rb -------------------------------------------------------------------------------- /app/helpers/newsletters_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/newsletters_helper.rb -------------------------------------------------------------------------------- /app/helpers/numbers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/numbers_helper.rb -------------------------------------------------------------------------------- /app/helpers/organizations_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/organizations_helper.rb -------------------------------------------------------------------------------- /app/helpers/permissions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/permissions_helper.rb -------------------------------------------------------------------------------- /app/helpers/shop_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/shop_helper.rb -------------------------------------------------------------------------------- /app/helpers/support_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/support_helper.rb -------------------------------------------------------------------------------- /app/helpers/tables_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/tables_helper.rb -------------------------------------------------------------------------------- /app/helpers/tooltip_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/helpers/tooltip_helper.rb -------------------------------------------------------------------------------- /app/inputs/action_text_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/inputs/action_text_input.rb -------------------------------------------------------------------------------- /app/inputs/check_boxes_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/inputs/check_boxes_input.rb -------------------------------------------------------------------------------- /app/inputs/custom_range_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/inputs/custom_range_input.rb -------------------------------------------------------------------------------- /app/javascript/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/admin.js -------------------------------------------------------------------------------- /app/javascript/admin/trix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/admin/trix.js -------------------------------------------------------------------------------- /app/javascript/components/appsignal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/components/appsignal.js -------------------------------------------------------------------------------- /app/javascript/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/components/utils.js -------------------------------------------------------------------------------- /app/javascript/controllers/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/controllers/admin/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/members/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/controllers/members/index.js -------------------------------------------------------------------------------- /app/javascript/members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/javascript/members.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/bidding_round/completion_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/bidding_round/completion_job.rb -------------------------------------------------------------------------------- /app/jobs/billing/invoice_cancellation_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/billing/invoice_cancellation_job.rb -------------------------------------------------------------------------------- /app/jobs/billing/invoice_processor_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/billing/invoice_processor_job.rb -------------------------------------------------------------------------------- /app/jobs/billing/member_invoicer_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/billing/member_invoicer_job.rb -------------------------------------------------------------------------------- /app/jobs/concerns/tenant_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/concerns/tenant_context.rb -------------------------------------------------------------------------------- /app/jobs/delivery_baskets_updater_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/delivery_baskets_updater_job.rb -------------------------------------------------------------------------------- /app/jobs/membership_future_billing_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/membership_future_billing_job.rb -------------------------------------------------------------------------------- /app/jobs/membership_open_renewal_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/membership_open_renewal_job.rb -------------------------------------------------------------------------------- /app/jobs/membership_renewal_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/membership_renewal_job.rb -------------------------------------------------------------------------------- /app/jobs/newsletter/delivery_process_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/newsletter/delivery_process_job.rb -------------------------------------------------------------------------------- /app/jobs/postmark/webhook_handler_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/postmark/webhook_handler_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled/base_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/scheduled/base_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled/billing_snapshot_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/scheduled/billing_snapshot_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled/chores_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/scheduled/chores_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled/newsletters_sender_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/scheduled/newsletters_sender_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled/notifier_daily_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/scheduled/notifier_daily_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled/notifier_hourly_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/scheduled/notifier_hourly_job.rb -------------------------------------------------------------------------------- /app/jobs/tenant_switch_each_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/jobs/tenant_switch_each_job.rb -------------------------------------------------------------------------------- /app/mailer_previews/admin_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailer_previews/admin_mailer_preview.rb -------------------------------------------------------------------------------- /app/mailer_previews/member_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailer_previews/member_mailer_preview.rb -------------------------------------------------------------------------------- /app/mailers/absence_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/absence_mailer.rb -------------------------------------------------------------------------------- /app/mailers/activity_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/activity_mailer.rb -------------------------------------------------------------------------------- /app/mailers/admin_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/admin_mailer.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/bidding_round_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/bidding_round_mailer.rb -------------------------------------------------------------------------------- /app/mailers/concerns/templatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/concerns/templatable.rb -------------------------------------------------------------------------------- /app/mailers/invoice_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/invoice_mailer.rb -------------------------------------------------------------------------------- /app/mailers/member_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/member_mailer.rb -------------------------------------------------------------------------------- /app/mailers/membership_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/membership_mailer.rb -------------------------------------------------------------------------------- /app/mailers/newsletter_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/newsletter_mailer.rb -------------------------------------------------------------------------------- /app/mailers/session_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/session_mailer.rb -------------------------------------------------------------------------------- /app/mailers/support_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/mailers/support_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/absence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/absence.rb -------------------------------------------------------------------------------- /app/models/absence/admin_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/absence/admin_notifications.rb -------------------------------------------------------------------------------- /app/models/absence/period.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/absence/period.rb -------------------------------------------------------------------------------- /app/models/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/activity.rb -------------------------------------------------------------------------------- /app/models/activity/availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/activity/availability.rb -------------------------------------------------------------------------------- /app/models/activity/presetable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/activity/presetable.rb -------------------------------------------------------------------------------- /app/models/activity_participation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/activity_participation.rb -------------------------------------------------------------------------------- /app/models/activity_participation_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/activity_participation_group.rb -------------------------------------------------------------------------------- /app/models/activity_preset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/activity_preset.rb -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/announcement.rb -------------------------------------------------------------------------------- /app/models/annual_fee.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class AnnualFee; end 4 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/attachment.rb -------------------------------------------------------------------------------- /app/models/audit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/audit.rb -------------------------------------------------------------------------------- /app/models/basket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket.rb -------------------------------------------------------------------------------- /app/models/basket_complement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_complement.rb -------------------------------------------------------------------------------- /app/models/basket_complement_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_complement_count.rb -------------------------------------------------------------------------------- /app/models/basket_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_content.rb -------------------------------------------------------------------------------- /app/models/basket_content/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_content/product.rb -------------------------------------------------------------------------------- /app/models/basket_counts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_counts.rb -------------------------------------------------------------------------------- /app/models/basket_shift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_shift.rb -------------------------------------------------------------------------------- /app/models/basket_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/basket_size.rb -------------------------------------------------------------------------------- /app/models/baskets_basket_complement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/baskets_basket_complement.rb -------------------------------------------------------------------------------- /app/models/bidding_round.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/bidding_round.rb -------------------------------------------------------------------------------- /app/models/bidding_round/pledge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/bidding_round/pledge.rb -------------------------------------------------------------------------------- /app/models/billing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing.rb -------------------------------------------------------------------------------- /app/models/billing/bas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/bas.rb -------------------------------------------------------------------------------- /app/models/billing/camt_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/camt_file.rb -------------------------------------------------------------------------------- /app/models/billing/ebics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/ebics.rb -------------------------------------------------------------------------------- /app/models/billing/ebics_mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/ebics_mock.rb -------------------------------------------------------------------------------- /app/models/billing/epc_qr_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/epc_qr_code.rb -------------------------------------------------------------------------------- /app/models/billing/invoicer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/invoicer.rb -------------------------------------------------------------------------------- /app/models/billing/invoicer_future.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/invoicer_future.rb -------------------------------------------------------------------------------- /app/models/billing/invoicer_share.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/invoicer_share.rb -------------------------------------------------------------------------------- /app/models/billing/mt_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/mt_file.rb -------------------------------------------------------------------------------- /app/models/billing/payments_processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/payments_processor.rb -------------------------------------------------------------------------------- /app/models/billing/payments_redistributor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/payments_redistributor.rb -------------------------------------------------------------------------------- /app/models/billing/scor_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/scor_reference.rb -------------------------------------------------------------------------------- /app/models/billing/sepa_direct_debit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/sepa_direct_debit.rb -------------------------------------------------------------------------------- /app/models/billing/snapshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/snapshot.rb -------------------------------------------------------------------------------- /app/models/billing/swiss_qr_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/swiss_qr_code.rb -------------------------------------------------------------------------------- /app/models/billing/swiss_qr_reference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/billing/swiss_qr_reference.rb -------------------------------------------------------------------------------- /app/models/checker/membership_price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/checker/membership_price.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/auditable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/auditable.rb -------------------------------------------------------------------------------- /app/models/concerns/bulk_dates_insert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/bulk_dates_insert.rb -------------------------------------------------------------------------------- /app/models/concerns/discardable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/discardable.rb -------------------------------------------------------------------------------- /app/models/concerns/has_attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_attachments.rb -------------------------------------------------------------------------------- /app/models/concerns/has_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_comment.rb -------------------------------------------------------------------------------- /app/models/concerns/has_currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_currency.rb -------------------------------------------------------------------------------- /app/models/concerns/has_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_date.rb -------------------------------------------------------------------------------- /app/models/concerns/has_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_description.rb -------------------------------------------------------------------------------- /app/models/concerns/has_emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_emails.rb -------------------------------------------------------------------------------- /app/models/concerns/has_fiscal_year.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_fiscal_year.rb -------------------------------------------------------------------------------- /app/models/concerns/has_iban.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_iban.rb -------------------------------------------------------------------------------- /app/models/concerns/has_language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_language.rb -------------------------------------------------------------------------------- /app/models/concerns/has_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_name.rb -------------------------------------------------------------------------------- /app/models/concerns/has_note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_note.rb -------------------------------------------------------------------------------- /app/models/concerns/has_phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_phones.rb -------------------------------------------------------------------------------- /app/models/concerns/has_price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_price.rb -------------------------------------------------------------------------------- /app/models/concerns/has_public_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_public_name.rb -------------------------------------------------------------------------------- /app/models/concerns/has_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_sessions.rb -------------------------------------------------------------------------------- /app/models/concerns/has_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_state.rb -------------------------------------------------------------------------------- /app/models/concerns/has_visibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/has_visibility.rb -------------------------------------------------------------------------------- /app/models/concerns/liquidable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/liquidable.rb -------------------------------------------------------------------------------- /app/models/concerns/normalized_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/normalized_string.rb -------------------------------------------------------------------------------- /app/models/concerns/translated_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/translated_attributes.rb -------------------------------------------------------------------------------- /app/models/concerns/translated_rich_texts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/concerns/translated_rich_texts.rb -------------------------------------------------------------------------------- /app/models/current.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/current.rb -------------------------------------------------------------------------------- /app/models/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/delivery.rb -------------------------------------------------------------------------------- /app/models/delivery_cycle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/delivery_cycle.rb -------------------------------------------------------------------------------- /app/models/depot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/depot.rb -------------------------------------------------------------------------------- /app/models/depot_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/depot_group.rb -------------------------------------------------------------------------------- /app/models/email_suppression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/email_suppression.rb -------------------------------------------------------------------------------- /app/models/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/error.rb -------------------------------------------------------------------------------- /app/models/fiscal_year.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/fiscal_year.rb -------------------------------------------------------------------------------- /app/models/handbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/handbook.rb -------------------------------------------------------------------------------- /app/models/invalid_transition_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/invalid_transition_error.rb -------------------------------------------------------------------------------- /app/models/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/invoice.rb -------------------------------------------------------------------------------- /app/models/invoice_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/invoice_item.rb -------------------------------------------------------------------------------- /app/models/invoice_overdue_notice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/invoice_overdue_notice.rb -------------------------------------------------------------------------------- /app/models/invoice_total.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/invoice_total.rb -------------------------------------------------------------------------------- /app/models/invoices_pdf_zipper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/invoices_pdf_zipper.rb -------------------------------------------------------------------------------- /app/models/liquid/absence_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/absence_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/activity_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/activity_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_absence_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_absence_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_basket_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_basket_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_delivery_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_delivery_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_depot_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_depot_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_member_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_member_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/admin_membership_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/admin_membership_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/basket_complement_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/basket_complement_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/basket_content_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/basket_content_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/basket_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/basket_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/basket_shift_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/basket_shift_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/basket_size_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/basket_size_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/bidding_round_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/bidding_round_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/button_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/button_block.rb -------------------------------------------------------------------------------- /app/models/liquid/content_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/content_block.rb -------------------------------------------------------------------------------- /app/models/liquid/data_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/data_preview.rb -------------------------------------------------------------------------------- /app/models/liquid/delivery_cycle_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/delivery_cycle_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/delivery_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/delivery_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/depot_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/depot_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/email_suppression_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/email_suppression_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/highlight_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/highlight_block.rb -------------------------------------------------------------------------------- /app/models/liquid/highlight_list_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/highlight_list_block.rb -------------------------------------------------------------------------------- /app/models/liquid/invoice_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/invoice_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/lowlight_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/lowlight_block.rb -------------------------------------------------------------------------------- /app/models/liquid/member_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/member_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/membership_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/membership_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/organization_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/organization_drop.rb -------------------------------------------------------------------------------- /app/models/liquid/payment_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/liquid/payment_drop.rb -------------------------------------------------------------------------------- /app/models/local_currency/radis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/local_currency/radis.rb -------------------------------------------------------------------------------- /app/models/mail_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/mail_template.rb -------------------------------------------------------------------------------- /app/models/member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/member.rb -------------------------------------------------------------------------------- /app/models/member_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/member_registration.rb -------------------------------------------------------------------------------- /app/models/members_basket_complement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/members_basket_complement.rb -------------------------------------------------------------------------------- /app/models/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/membership.rb -------------------------------------------------------------------------------- /app/models/membership_baskets_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/membership_baskets_updater.rb -------------------------------------------------------------------------------- /app/models/membership_pricing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/membership_pricing.rb -------------------------------------------------------------------------------- /app/models/membership_renewal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/membership_renewal.rb -------------------------------------------------------------------------------- /app/models/memberships_basket_complement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/memberships_basket_complement.rb -------------------------------------------------------------------------------- /app/models/memberships_renewal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/memberships_renewal.rb -------------------------------------------------------------------------------- /app/models/new_member_fee.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class NewMemberFee; end 4 | -------------------------------------------------------------------------------- /app/models/newsletter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/newsletter.rb -------------------------------------------------------------------------------- /app/models/newsletter/audience.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/newsletter/audience.rb -------------------------------------------------------------------------------- /app/models/newsletter/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/newsletter/block.rb -------------------------------------------------------------------------------- /app/models/newsletter/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/newsletter/delivery.rb -------------------------------------------------------------------------------- /app/models/newsletter/segment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/newsletter/segment.rb -------------------------------------------------------------------------------- /app/models/newsletter/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/newsletter/template.rb -------------------------------------------------------------------------------- /app/models/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/notifier.rb -------------------------------------------------------------------------------- /app/models/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/organization.rb -------------------------------------------------------------------------------- /app/models/organization/absence_feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/organization/absence_feature.rb -------------------------------------------------------------------------------- /app/models/organization/activity_feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/organization/activity_feature.rb -------------------------------------------------------------------------------- /app/models/organization/billing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/organization/billing.rb -------------------------------------------------------------------------------- /app/models/organization/shop_feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/organization/shop_feature.rb -------------------------------------------------------------------------------- /app/models/other.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Other; end 4 | -------------------------------------------------------------------------------- /app/models/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/payment.rb -------------------------------------------------------------------------------- /app/models/payment_total.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/payment_total.rb -------------------------------------------------------------------------------- /app/models/pdf/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/pdf/base.rb -------------------------------------------------------------------------------- /app/models/pdf/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/pdf/delivery.rb -------------------------------------------------------------------------------- /app/models/pdf/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/pdf/invoice.rb -------------------------------------------------------------------------------- /app/models/pdf/invoice_cancellation_stamp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/pdf/invoice_cancellation_stamp.rb -------------------------------------------------------------------------------- /app/models/pdf/shop/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/pdf/shop/delivery.rb -------------------------------------------------------------------------------- /app/models/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/permission.rb -------------------------------------------------------------------------------- /app/models/qr_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/qr_code.rb -------------------------------------------------------------------------------- /app/models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/session.rb -------------------------------------------------------------------------------- /app/models/share.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class Share; end 4 | -------------------------------------------------------------------------------- /app/models/shop/delivery_total.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/delivery_total.rb -------------------------------------------------------------------------------- /app/models/shop/null_producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/null_producer.rb -------------------------------------------------------------------------------- /app/models/shop/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/order.rb -------------------------------------------------------------------------------- /app/models/shop/order_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/order_item.rb -------------------------------------------------------------------------------- /app/models/shop/producer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/producer.rb -------------------------------------------------------------------------------- /app/models/shop/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/product.rb -------------------------------------------------------------------------------- /app/models/shop/product_variant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/product_variant.rb -------------------------------------------------------------------------------- /app/models/shop/special_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/special_delivery.rb -------------------------------------------------------------------------------- /app/models/shop/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/shop/tag.rb -------------------------------------------------------------------------------- /app/models/social_network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/social_network.rb -------------------------------------------------------------------------------- /app/models/spam_detector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/spam_detector.rb -------------------------------------------------------------------------------- /app/models/support/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/support/ticket.rb -------------------------------------------------------------------------------- /app/models/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/system.rb -------------------------------------------------------------------------------- /app/models/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/update.rb -------------------------------------------------------------------------------- /app/models/xlsx/absence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/xlsx/absence.rb -------------------------------------------------------------------------------- /app/models/xlsx/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/xlsx/base.rb -------------------------------------------------------------------------------- /app/models/xlsx/basket_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/xlsx/basket_content.rb -------------------------------------------------------------------------------- /app/models/xlsx/billing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/xlsx/billing.rb -------------------------------------------------------------------------------- /app/models/xlsx/delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/xlsx/delivery.rb -------------------------------------------------------------------------------- /app/models/xlsx/shop/order_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/models/xlsx/shop/order_item.rb -------------------------------------------------------------------------------- /app/views/active_admin/_html_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/active_admin/_html_head.html.erb -------------------------------------------------------------------------------- /app/views/active_admin/_page_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/active_admin/_page_header.html.erb -------------------------------------------------------------------------------- /app/views/active_admin/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/active_admin/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/active_admin/_site_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/active_admin/_site_footer.html.erb -------------------------------------------------------------------------------- /app/views/active_admin/_site_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/active_admin/_site_header.html.erb -------------------------------------------------------------------------------- /app/views/handbook/absences.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/absences.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/absences.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/absences.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/absences.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/absences.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/absences.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/absences.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/absences.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/absences.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/activity.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/activity.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/activity.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/activity.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/activity.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/activity.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/activity.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/activity.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/activity.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/activity.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/bidding_round.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/bidding_round.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/bidding_round.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/bidding_round.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/bidding_round.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/bidding_round.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/bidding_round.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/bidding_round.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/bidding_round.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/bidding_round.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/billing.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/billing.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/billing.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/billing.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/billing.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/billing.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/billing.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/billing.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/billing.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/billing.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/compliance.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/compliance.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/compliance.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/compliance.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/compliance.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/compliance.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/compliance.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/compliance.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/compliance.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/compliance.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/deliveries.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/deliveries.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/deliveries.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/deliveries.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/deliveries.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/deliveries.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/deliveries.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/deliveries.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/deliveries.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/deliveries.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/getting_started.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/getting_started.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/getting_started.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/getting_started.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/getting_started.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/getting_started.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/getting_started.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/getting_started.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/getting_started.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/getting_started.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/local_currency.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/local_currency.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/local_currency.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/local_currency.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/local_currency.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/local_currency.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/local_currency.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/local_currency.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/local_currency.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/local_currency.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/members.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/members.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/members.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/members.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/members.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/members.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/members.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/members.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/members.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/members.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/new_member_fee.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/new_member_fee.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/new_member_fee.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/new_member_fee.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/new_member_fee.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/new_member_fee.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/new_member_fee.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/new_member_fee.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/new_member_fee.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/new_member_fee.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/newsletters.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/newsletters.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/newsletters.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/newsletters.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/newsletters.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/newsletters.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/newsletters.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/newsletters.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/newsletters.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/newsletters.nl.md.erb -------------------------------------------------------------------------------- /app/views/handbook/shop.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/shop.de.md.erb -------------------------------------------------------------------------------- /app/views/handbook/shop.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/shop.en.md.erb -------------------------------------------------------------------------------- /app/views/handbook/shop.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/shop.fr.md.erb -------------------------------------------------------------------------------- /app/views/handbook/shop.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/shop.it.md.erb -------------------------------------------------------------------------------- /app/views/handbook/shop.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/handbook/shop.nl.md.erb -------------------------------------------------------------------------------- /app/views/layouts/active_admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/layouts/active_admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/members.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/layouts/members.html.erb -------------------------------------------------------------------------------- /app/views/layouts/members/_flashes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/layouts/members/_flashes.html.erb -------------------------------------------------------------------------------- /app/views/layouts/members/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/layouts/members/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/members/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/layouts/members/_header.html.erb -------------------------------------------------------------------------------- /app/views/mail_templates/preview.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/mail_templates/preview.js.erb -------------------------------------------------------------------------------- /app/views/mailers/content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/mailers/content.html.erb -------------------------------------------------------------------------------- /app/views/members/absences/_absence.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/absences/_absence.html.erb -------------------------------------------------------------------------------- /app/views/members/absences/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/absences/index.html.erb -------------------------------------------------------------------------------- /app/views/members/accounts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/accounts/edit.html.erb -------------------------------------------------------------------------------- /app/views/members/accounts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/accounts/show.html.erb -------------------------------------------------------------------------------- /app/views/members/basket_shifts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/basket_shifts/new.html.erb -------------------------------------------------------------------------------- /app/views/members/baskets/_basket.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/baskets/_basket.html.erb -------------------------------------------------------------------------------- /app/views/members/baskets/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/baskets/edit.html.erb -------------------------------------------------------------------------------- /app/views/members/billing/_line.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/billing/_line.html.erb -------------------------------------------------------------------------------- /app/views/members/billing/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/billing/index.html.erb -------------------------------------------------------------------------------- /app/views/members/calendars/show.ics.ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/calendars/show.ics.ruby -------------------------------------------------------------------------------- /app/views/members/deliveries/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/deliveries/index.html.erb -------------------------------------------------------------------------------- /app/views/members/infos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/infos/show.html.erb -------------------------------------------------------------------------------- /app/views/members/members/_pricing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/members/_pricing.html.erb -------------------------------------------------------------------------------- /app/views/members/members/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/members/new.html.erb -------------------------------------------------------------------------------- /app/views/members/members/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/members/welcome.html.erb -------------------------------------------------------------------------------- /app/views/members/memberships/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/memberships/edit.html.erb -------------------------------------------------------------------------------- /app/views/members/memberships/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/memberships/index.html.erb -------------------------------------------------------------------------------- /app/views/members/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/members/shop/orders/_cart.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/shop/orders/_cart.html.erb -------------------------------------------------------------------------------- /app/views/members/shop/orders/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/members/shop/orders/show.html.erb -------------------------------------------------------------------------------- /app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/updates/_20211230_handbook.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20211230_handbook.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20220211_shop.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20220211_shop.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20240427_discard.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20240427_discard.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20241103_sqlite.de.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20241103_sqlite.de.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20241103_sqlite.en.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20241103_sqlite.en.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20241103_sqlite.fr.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20241103_sqlite.fr.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20241103_sqlite.it.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20241103_sqlite.it.md.erb -------------------------------------------------------------------------------- /app/views/updates/_20241103_sqlite.nl.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/app/views/updates/_20241103_sqlite.nl.md.erb -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundler-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/bundler-audit -------------------------------------------------------------------------------- /bin/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/ci -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/docker-entrypoint -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/jobs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/jobs -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/bin/thrust -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/appsignal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/appsignal.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.yml: -------------------------------------------------------------------------------- 1 | --- 2 | :min_confidence: 0 3 | -------------------------------------------------------------------------------- /config/bundler-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/bundler-audit.yml -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/ci.rb -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/credentials/test.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/credentials/test.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/deploy.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/importmap.rb -------------------------------------------------------------------------------- /config/initializers/action_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/action_mailer.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/active_admin_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/active_admin_filters.rb -------------------------------------------------------------------------------- /config/initializers/active_admin_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/active_admin_helpers.rb -------------------------------------------------------------------------------- /config/initializers/active_admin_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/active_admin_table.rb -------------------------------------------------------------------------------- /config/initializers/active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/active_storage.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/formtastic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/formtastic.rb -------------------------------------------------------------------------------- /config/initializers/i18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/i18n.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/inline_svg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/inline_svg.rb -------------------------------------------------------------------------------- /config/initializers/liquid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/liquid.rb -------------------------------------------------------------------------------- /config/initializers/logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/logging.rb -------------------------------------------------------------------------------- /config/initializers/lograge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/lograge.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/mission_control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/mission_control.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/postmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/postmark.rb -------------------------------------------------------------------------------- /config/initializers/ransack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/ransack.rb -------------------------------------------------------------------------------- /config/initializers/reactionview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/reactionview.rb -------------------------------------------------------------------------------- /config/initializers/schema_dumper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/schema_dumper.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/solid_queue_shard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/solid_queue_shard.rb -------------------------------------------------------------------------------- /config/initializers/tenant_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/tenant_middleware.rb -------------------------------------------------------------------------------- /config/initializers/truemail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/truemail.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/active_admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/active_admin.yml -------------------------------------------------------------------------------- /config/locales/activemodel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/activemodel.yml -------------------------------------------------------------------------------- /config/locales/activerecord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/activerecord.yml -------------------------------------------------------------------------------- /config/locales/activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/activities.yml -------------------------------------------------------------------------------- /config/locales/activity_participations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/activity_participations.yml -------------------------------------------------------------------------------- /config/locales/admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/admin.yml -------------------------------------------------------------------------------- /config/locales/admin_mailer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/admin_mailer.yml -------------------------------------------------------------------------------- /config/locales/announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/announcements.yml -------------------------------------------------------------------------------- /config/locales/attributes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/attributes.yml -------------------------------------------------------------------------------- /config/locales/basket_content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/basket_content.yml -------------------------------------------------------------------------------- /config/locales/bidding_rounds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/bidding_rounds.yml -------------------------------------------------------------------------------- /config/locales/billing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/billing.yml -------------------------------------------------------------------------------- /config/locales/boolean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/boolean.yml -------------------------------------------------------------------------------- /config/locales/date.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/date.yml -------------------------------------------------------------------------------- /config/locales/datetime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/datetime.yml -------------------------------------------------------------------------------- /config/locales/delivery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/delivery.yml -------------------------------------------------------------------------------- /config/locales/delivery_cycle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/delivery_cycle.yml -------------------------------------------------------------------------------- /config/locales/errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/errors.yml -------------------------------------------------------------------------------- /config/locales/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/features.yml -------------------------------------------------------------------------------- /config/locales/flash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/flash.yml -------------------------------------------------------------------------------- /config/locales/form_modes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/form_modes.yml -------------------------------------------------------------------------------- /config/locales/formtastic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/formtastic.yml -------------------------------------------------------------------------------- /config/locales/helpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/helpers.yml -------------------------------------------------------------------------------- /config/locales/invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/invoices.yml -------------------------------------------------------------------------------- /config/locales/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/languages.yml -------------------------------------------------------------------------------- /config/locales/layouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/layouts.yml -------------------------------------------------------------------------------- /config/locales/local_currency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/local_currency.yml -------------------------------------------------------------------------------- /config/locales/mail_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/mail_template.yml -------------------------------------------------------------------------------- /config/locales/member_order.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/member_order.yml -------------------------------------------------------------------------------- /config/locales/members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/members.yml -------------------------------------------------------------------------------- /config/locales/newsletters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/newsletters.yml -------------------------------------------------------------------------------- /config/locales/number.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/number.yml -------------------------------------------------------------------------------- /config/locales/organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/organization.yml -------------------------------------------------------------------------------- /config/locales/payments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/payments.yml -------------------------------------------------------------------------------- /config/locales/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/permissions.yml -------------------------------------------------------------------------------- /config/locales/session_mailer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/session_mailer.yml -------------------------------------------------------------------------------- /config/locales/sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/sessions.yml -------------------------------------------------------------------------------- /config/locales/shop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/shop.yml -------------------------------------------------------------------------------- /config/locales/shop_orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/shop_orders.yml -------------------------------------------------------------------------------- /config/locales/simple_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/simple_form.yml -------------------------------------------------------------------------------- /config/locales/states.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/states.yml -------------------------------------------------------------------------------- /config/locales/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/support.yml -------------------------------------------------------------------------------- /config/locales/time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/time.yml -------------------------------------------------------------------------------- /config/locales/units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/units.yml -------------------------------------------------------------------------------- /config/locales/views.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/locales/views.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/queue.yml -------------------------------------------------------------------------------- /config/recurring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/recurring.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/tenant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/tenant.yml -------------------------------------------------------------------------------- /config/tenant.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/config/tenant.yml.example -------------------------------------------------------------------------------- /db/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/queue_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/db/queue_schema.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/active_admin/filter_saver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/active_admin/filter_saver.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/fonts/Helvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/fonts/Helvetica.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/HelveticaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/fonts/HelveticaBold.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/HelveticaBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/fonts/HelveticaBoldOblique.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/HelveticaLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/fonts/HelveticaLight.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/HelveticaLightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/fonts/HelveticaLightOblique.ttf -------------------------------------------------------------------------------- /lib/assets/fonts/HelveticaOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/fonts/HelveticaOblique.ttf -------------------------------------------------------------------------------- /lib/assets/images/radis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/images/radis.png -------------------------------------------------------------------------------- /lib/assets/images/scissor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/images/scissor.png -------------------------------------------------------------------------------- /lib/assets/images/swiss_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/assets/images/swiss_cross.png -------------------------------------------------------------------------------- /lib/postmark_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/postmark_wrapper.rb -------------------------------------------------------------------------------- /lib/rounding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/rounding.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/anonymizer.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/anonymizer.rake -------------------------------------------------------------------------------- /lib/tasks/bookmarks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/bookmarks.rake -------------------------------------------------------------------------------- /lib/tasks/database.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/database.rake -------------------------------------------------------------------------------- /lib/tasks/development.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/development.rake -------------------------------------------------------------------------------- /lib/tasks/hostname.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/hostname.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /lib/tasks/litestream.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/litestream.rake -------------------------------------------------------------------------------- /lib/tasks/locales.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/locales.rake -------------------------------------------------------------------------------- /lib/tasks/maintenance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/maintenance.rake -------------------------------------------------------------------------------- /lib/tasks/organizations.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/organizations.rake -------------------------------------------------------------------------------- /lib/tasks/postmark.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/postmark.rake -------------------------------------------------------------------------------- /lib/tasks/simpleicons.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/simpleicons.rake -------------------------------------------------------------------------------- /lib/tasks/storage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tasks/storage.rake -------------------------------------------------------------------------------- /lib/templates/bookmarks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/templates/bookmarks.html.erb -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /lib/tenant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tenant.rb -------------------------------------------------------------------------------- /lib/tenant/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/lib/tenant/middleware.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/package.json -------------------------------------------------------------------------------- /public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/400.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/404.html -------------------------------------------------------------------------------- /public/406-unsupported-browser-de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/406-unsupported-browser-de.html -------------------------------------------------------------------------------- /public/406-unsupported-browser-en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/406-unsupported-browser-en.html -------------------------------------------------------------------------------- /public/406-unsupported-browser-fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/406-unsupported-browser-fr.html -------------------------------------------------------------------------------- /public/406-unsupported-browser-it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/406-unsupported-browser-it.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/logo-text.png -------------------------------------------------------------------------------- /public/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/maintenance.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/absences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/absences.yml -------------------------------------------------------------------------------- /test/fixtures/action_text/rich_texts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/action_text/rich_texts.yml -------------------------------------------------------------------------------- /test/fixtures/active_admin_comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/active_admin_comments.yml -------------------------------------------------------------------------------- /test/fixtures/active_storage/blobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/active_storage/blobs.yml -------------------------------------------------------------------------------- /test/fixtures/activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/activities.yml -------------------------------------------------------------------------------- /test/fixtures/activity_participations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/activity_participations.yml -------------------------------------------------------------------------------- /test/fixtures/activity_presets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/activity_presets.yml -------------------------------------------------------------------------------- /test/fixtures/admins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/admins.yml -------------------------------------------------------------------------------- /test/fixtures/basket_complements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/basket_complements.yml -------------------------------------------------------------------------------- /test/fixtures/basket_content/products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/basket_content/products.yml -------------------------------------------------------------------------------- /test/fixtures/basket_sizes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/basket_sizes.yml -------------------------------------------------------------------------------- /test/fixtures/baskets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/baskets.yml -------------------------------------------------------------------------------- /test/fixtures/bidding_round_pledges.yml: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | -------------------------------------------------------------------------------- /test/fixtures/bidding_rounds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/bidding_rounds.yml -------------------------------------------------------------------------------- /test/fixtures/deliveries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/deliveries.yml -------------------------------------------------------------------------------- /test/fixtures/delivery_cycles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/delivery_cycles.yml -------------------------------------------------------------------------------- /test/fixtures/depots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/depots.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/camt053.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/camt053.xml -------------------------------------------------------------------------------- /test/fixtures/files/camt053_reversal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/camt053_reversal.xml -------------------------------------------------------------------------------- /test/fixtures/files/camt054.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/camt054.xml -------------------------------------------------------------------------------- /test/fixtures/files/camt_invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/files/camt_wrong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/camt_wrong.xml -------------------------------------------------------------------------------- /test/fixtures/files/invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/invoice.pdf -------------------------------------------------------------------------------- /test/fixtures/files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/logo.png -------------------------------------------------------------------------------- /test/fixtures/files/mt940-reversal.mta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/mt940-reversal.mta -------------------------------------------------------------------------------- /test/fixtures/files/mt940.mt9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/mt940.mt9 -------------------------------------------------------------------------------- /test/fixtures/files/mt940.mta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/mt940.mta -------------------------------------------------------------------------------- /test/fixtures/files/qrcode-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/qrcode-check.png -------------------------------------------------------------------------------- /test/fixtures/files/qrcode-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/files/qrcode-test.png -------------------------------------------------------------------------------- /test/fixtures/invoice_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/invoice_items.yml -------------------------------------------------------------------------------- /test/fixtures/invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/invoices.yml -------------------------------------------------------------------------------- /test/fixtures/members.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/members.yml -------------------------------------------------------------------------------- /test/fixtures/memberships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/memberships.yml -------------------------------------------------------------------------------- /test/fixtures/newsletter/blocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/newsletter/blocks.yml -------------------------------------------------------------------------------- /test/fixtures/newsletter/deliveries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/newsletter/deliveries.yml -------------------------------------------------------------------------------- /test/fixtures/newsletter/templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/newsletter/templates.yml -------------------------------------------------------------------------------- /test/fixtures/newsletters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/newsletters.yml -------------------------------------------------------------------------------- /test/fixtures/organizations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/organizations.yml -------------------------------------------------------------------------------- /test/fixtures/payments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/payments.yml -------------------------------------------------------------------------------- /test/fixtures/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/permissions.yml -------------------------------------------------------------------------------- /test/fixtures/sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/sessions.yml -------------------------------------------------------------------------------- /test/fixtures/shop/order_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/shop/order_items.yml -------------------------------------------------------------------------------- /test/fixtures/shop/orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/shop/orders.yml -------------------------------------------------------------------------------- /test/fixtures/shop/producers.yml: -------------------------------------------------------------------------------- 1 | farm: 2 | name: Farm 3 | -------------------------------------------------------------------------------- /test/fixtures/shop/product_variants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/shop/product_variants.yml -------------------------------------------------------------------------------- /test/fixtures/shop/products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/shop/products.yml -------------------------------------------------------------------------------- /test/fixtures/shop/special_deliveries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/fixtures/shop/special_deliveries.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/jobs/concerns/tenant_context_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/jobs/concerns/tenant_context_test.rb -------------------------------------------------------------------------------- /test/jobs/membership_renewal_job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/jobs/membership_renewal_job_test.rb -------------------------------------------------------------------------------- /test/lib/tenant_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/lib/tenant_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/absence_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/absence_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/activity_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/activity_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/admin_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/admin_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/bidding_round_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/bidding_round_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/invoice_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/invoice_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/member_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/member_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/membership_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/membership_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/newsletter_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/newsletter_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/session_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/session_mailer_test.rb -------------------------------------------------------------------------------- /test/mailers/support_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/mailers/support_mailer_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/ability_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/ability_test.rb -------------------------------------------------------------------------------- /test/models/absence/period_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/absence/period_test.rb -------------------------------------------------------------------------------- /test/models/absence_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/absence_test.rb -------------------------------------------------------------------------------- /test/models/activity/availability_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/activity/availability_test.rb -------------------------------------------------------------------------------- /test/models/activity/presetable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/activity/presetable_test.rb -------------------------------------------------------------------------------- /test/models/activity_participation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/activity_participation_test.rb -------------------------------------------------------------------------------- /test/models/activity_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/activity_test.rb -------------------------------------------------------------------------------- /test/models/admin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/admin_test.rb -------------------------------------------------------------------------------- /test/models/announcement_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/announcement_test.rb -------------------------------------------------------------------------------- /test/models/basket_complement_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/basket_complement_test.rb -------------------------------------------------------------------------------- /test/models/basket_content_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/basket_content_test.rb -------------------------------------------------------------------------------- /test/models/basket_shift_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/basket_shift_test.rb -------------------------------------------------------------------------------- /test/models/basket_size_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/basket_size_test.rb -------------------------------------------------------------------------------- /test/models/basket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/basket_test.rb -------------------------------------------------------------------------------- /test/models/bidding_round/pledge_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/bidding_round/pledge_test.rb -------------------------------------------------------------------------------- /test/models/bidding_round_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/bidding_round_test.rb -------------------------------------------------------------------------------- /test/models/billing/camt_file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/billing/camt_file_test.rb -------------------------------------------------------------------------------- /test/models/billing/invoicer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/billing/invoicer_test.rb -------------------------------------------------------------------------------- /test/models/billing/mt_file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/billing/mt_file_test.rb -------------------------------------------------------------------------------- /test/models/billing/snapshot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/billing/snapshot_test.rb -------------------------------------------------------------------------------- /test/models/billing/swiss_qr_code_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/billing/swiss_qr_code_test.rb -------------------------------------------------------------------------------- /test/models/concerns/auditable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/concerns/auditable_test.rb -------------------------------------------------------------------------------- /test/models/concerns/has_currency_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/concerns/has_currency_test.rb -------------------------------------------------------------------------------- /test/models/delivery_cycle_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/delivery_cycle_test.rb -------------------------------------------------------------------------------- /test/models/delivery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/delivery_test.rb -------------------------------------------------------------------------------- /test/models/depot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/depot_test.rb -------------------------------------------------------------------------------- /test/models/email_suppression_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/email_suppression_test.rb -------------------------------------------------------------------------------- /test/models/fiscal_year_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/fiscal_year_test.rb -------------------------------------------------------------------------------- /test/models/invoice_overdue_notice_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/invoice_overdue_notice_test.rb -------------------------------------------------------------------------------- /test/models/invoice_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/invoice_test.rb -------------------------------------------------------------------------------- /test/models/liquid/data_preview_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/liquid/data_preview_test.rb -------------------------------------------------------------------------------- /test/models/local_currency/radis_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/local_currency/radis_test.rb -------------------------------------------------------------------------------- /test/models/mail_template_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/mail_template_test.rb -------------------------------------------------------------------------------- /test/models/member_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/member_registration_test.rb -------------------------------------------------------------------------------- /test/models/member_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/member_test.rb -------------------------------------------------------------------------------- /test/models/membership_pricing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/membership_pricing_test.rb -------------------------------------------------------------------------------- /test/models/membership_renewal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/membership_renewal_test.rb -------------------------------------------------------------------------------- /test/models/membership_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/membership_test.rb -------------------------------------------------------------------------------- /test/models/newsletter/audience_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/newsletter/audience_test.rb -------------------------------------------------------------------------------- /test/models/newsletter/delivery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/newsletter/delivery_test.rb -------------------------------------------------------------------------------- /test/models/newsletter/segment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/newsletter/segment_test.rb -------------------------------------------------------------------------------- /test/models/newsletter/template_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/newsletter/template_test.rb -------------------------------------------------------------------------------- /test/models/newsletter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/newsletter_test.rb -------------------------------------------------------------------------------- /test/models/notifier_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/notifier_test.rb -------------------------------------------------------------------------------- /test/models/organization_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/organization_test.rb -------------------------------------------------------------------------------- /test/models/payment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/payment_test.rb -------------------------------------------------------------------------------- /test/models/pdf/delivery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/pdf/delivery_test.rb -------------------------------------------------------------------------------- /test/models/pdf/invoice_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/pdf/invoice_test.rb -------------------------------------------------------------------------------- /test/models/pdf/shop/delivery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/pdf/shop/delivery_test.rb -------------------------------------------------------------------------------- /test/models/permission_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/permission_test.rb -------------------------------------------------------------------------------- /test/models/session_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/session_test.rb -------------------------------------------------------------------------------- /test/models/shop/order_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/shop/order_item_test.rb -------------------------------------------------------------------------------- /test/models/shop/order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/shop/order_test.rb -------------------------------------------------------------------------------- /test/models/shop/producer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/shop/producer_test.rb -------------------------------------------------------------------------------- /test/models/shop/product_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/shop/product_test.rb -------------------------------------------------------------------------------- /test/models/shop/special_delivery_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/shop/special_delivery_test.rb -------------------------------------------------------------------------------- /test/models/spam_detector_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/spam_detector_test.rb -------------------------------------------------------------------------------- /test/models/support/ticket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/support/ticket_test.rb -------------------------------------------------------------------------------- /test/models/update_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/models/update_test.rb -------------------------------------------------------------------------------- /test/shared/bulk_dates_insert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/shared/bulk_dates_insert.rb -------------------------------------------------------------------------------- /test/support/absences_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/absences_helper.rb -------------------------------------------------------------------------------- /test/support/activities_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/activities_helper.rb -------------------------------------------------------------------------------- /test/support/assertions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/assertions.rb -------------------------------------------------------------------------------- /test/support/basket_complements_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/basket_complements_helper.rb -------------------------------------------------------------------------------- /test/support/basket_contents_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/basket_contents_helper.rb -------------------------------------------------------------------------------- /test/support/basket_sizes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/basket_sizes_helper.rb -------------------------------------------------------------------------------- /test/support/billing_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/billing_helper.rb -------------------------------------------------------------------------------- /test/support/delivery_cycles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/delivery_cycles_helper.rb -------------------------------------------------------------------------------- /test/support/depots_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/depots_helper.rb -------------------------------------------------------------------------------- /test/support/email_suppressions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/email_suppressions_helper.rb -------------------------------------------------------------------------------- /test/support/flash_messages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/flash_messages_helper.rb -------------------------------------------------------------------------------- /test/support/invoices_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/invoices_helper.rb -------------------------------------------------------------------------------- /test/support/mail_templates_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/mail_templates_helper.rb -------------------------------------------------------------------------------- /test/support/members_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/members_helper.rb -------------------------------------------------------------------------------- /test/support/memberships_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/memberships_helper.rb -------------------------------------------------------------------------------- /test/support/newsletters_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/newsletters_helper.rb -------------------------------------------------------------------------------- /test/support/organizations_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/organizations_helper.rb -------------------------------------------------------------------------------- /test/support/payments_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/payments_helper.rb -------------------------------------------------------------------------------- /test/support/postmark_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/postmark_helper.rb -------------------------------------------------------------------------------- /test/support/postmark_mock_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/postmark_mock_client.rb -------------------------------------------------------------------------------- /test/support/prawn_image_stub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/prawn_image_stub.rb -------------------------------------------------------------------------------- /test/support/qr_code_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/qr_code_helper.rb -------------------------------------------------------------------------------- /test/support/responses_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/responses_helper.rb -------------------------------------------------------------------------------- /test/support/sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/sessions_helper.rb -------------------------------------------------------------------------------- /test/support/shop_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/shop_helper.rb -------------------------------------------------------------------------------- /test/support/ui_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/support/ui_helper.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/invoices_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/invoices_test.rb -------------------------------------------------------------------------------- /test/system/mail_templates_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/mail_templates_test.rb -------------------------------------------------------------------------------- /test/system/members/absences_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/absences_test.rb -------------------------------------------------------------------------------- /test/system/members/accounts_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/accounts_test.rb -------------------------------------------------------------------------------- /test/system/members/basket_shifs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/basket_shifs_test.rb -------------------------------------------------------------------------------- /test/system/members/baskets_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/baskets_test.rb -------------------------------------------------------------------------------- /test/system/members/bidding_rounds_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/bidding_rounds_test.rb -------------------------------------------------------------------------------- /test/system/members/billing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/billing_test.rb -------------------------------------------------------------------------------- /test/system/members/deliveries_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/deliveries_test.rb -------------------------------------------------------------------------------- /test/system/members/infos_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/infos_test.rb -------------------------------------------------------------------------------- /test/system/members/members_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/members_test.rb -------------------------------------------------------------------------------- /test/system/members/memberships_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/memberships_test.rb -------------------------------------------------------------------------------- /test/system/members/sessions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/sessions_test.rb -------------------------------------------------------------------------------- /test/system/members/shop_orders_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/shop_orders_test.rb -------------------------------------------------------------------------------- /test/system/members/shop_products_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/shop_products_test.rb -------------------------------------------------------------------------------- /test/system/members/shop_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/members/shop_test.rb -------------------------------------------------------------------------------- /test/system/sessions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/system/sessions_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.powrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/.powrc -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/javascript/@appsignal--core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/@appsignal--core.js -------------------------------------------------------------------------------- /vendor/javascript/@hotwired--stimulus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/@hotwired--stimulus.js -------------------------------------------------------------------------------- /vendor/javascript/@rails--request.js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/@rails--request.js.js -------------------------------------------------------------------------------- /vendor/javascript/@rails--ujs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/@rails--ujs.js -------------------------------------------------------------------------------- /vendor/javascript/codejar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/codejar.js -------------------------------------------------------------------------------- /vendor/javascript/flatpickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/flatpickr.js -------------------------------------------------------------------------------- /vendor/javascript/flowbite.turbo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/flowbite.turbo.min.js -------------------------------------------------------------------------------- /vendor/javascript/https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/https.js -------------------------------------------------------------------------------- /vendor/javascript/prismjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/prismjs.js -------------------------------------------------------------------------------- /vendor/javascript/sortablejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/sortablejs.js -------------------------------------------------------------------------------- /vendor/javascript/throttle-debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/throttle-debounce.js -------------------------------------------------------------------------------- /vendor/javascript/tslib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csa-admin-org/csa-admin/HEAD/vendor/javascript/tslib.js --------------------------------------------------------------------------------