├── .codeclimate.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc ├── .gemrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature-request.md │ └── support.md └── workflows │ └── brakeman-analysis.yml ├── .gitignore ├── .gitlab-ci.yml ├── .nvmrc ├── .overcommit.yml ├── .rubocop.yml ├── .ruby-gemset ├── .ruby-version ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Capfile ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.md ├── Procfile ├── README.md ├── Rakefile ├── Vagrantfile ├── app ├── controllers │ ├── api │ │ ├── abuses_controller.rb │ │ ├── accounting_exports_controller.rb │ │ ├── accounting_periods_controller.rb │ │ ├── admins_controller.rb │ │ ├── age_ranges_controller.rb │ │ ├── analytics_controller.rb │ │ ├── api_controller.rb │ │ ├── auth_providers_controller.rb │ │ ├── availabilities_controller.rb │ │ ├── cart_controller.rb │ │ ├── categories_controller.rb │ │ ├── checkout_controller.rb │ │ ├── children_controller.rb │ │ ├── components_controller.rb │ │ ├── coupons_controller.rb │ │ ├── credits_controller.rb │ │ ├── custom_assets_controller.rb │ │ ├── event_themes_controller.rb │ │ ├── events_controller.rb │ │ ├── exports_controller.rb │ │ ├── files_controller.rb │ │ ├── groups_controller.rb │ │ ├── i_calendar_controller.rb │ │ ├── imports_controller.rb │ │ ├── invoices_controller.rb │ │ ├── licences_controller.rb │ │ ├── local_payment_controller.rb │ │ ├── machine_categories_controller.rb │ │ ├── machines_controller.rb │ │ ├── members_controller.rb │ │ ├── notification_preferences_controller.rb │ │ ├── notification_types_controller.rb │ │ ├── notifications_controller.rb │ │ ├── open_api_clients_controller.rb │ │ ├── openlab_projects_controller.rb │ │ ├── orders_controller.rb │ │ ├── payment_schedules_controller.rb │ │ ├── payments_controller.rb │ │ ├── payzen_controller.rb │ │ ├── plan_categories_controller.rb │ │ ├── plans_controller.rb │ │ ├── prepaid_packs_controller.rb │ │ ├── price_categories_controller.rb │ │ ├── prices_controller.rb │ │ ├── pricing_controller.rb │ │ ├── product_categories_controller.rb │ │ ├── products_controller.rb │ │ ├── profile_custom_fields_controller.rb │ │ ├── project_categories_controller.rb │ │ ├── projects_controller.rb │ │ ├── reservation_contexts_controller.rb │ │ ├── reservations_controller.rb │ │ ├── settings_controller.rb │ │ ├── slots_reservations_controller.rb │ │ ├── spaces_controller.rb │ │ ├── statistics_controller.rb │ │ ├── statuses_controller.rb │ │ ├── stripe_controller.rb │ │ ├── stylesheets_controller.rb │ │ ├── subscriptions_controller.rb │ │ ├── supporting_document_files_controller.rb │ │ ├── supporting_document_refusals_controller.rb │ │ ├── supporting_document_types_controller.rb │ │ ├── tags_controller.rb │ │ ├── themes_controller.rb │ │ ├── trainings_controller.rb │ │ ├── trainings_pricings_controller.rb │ │ ├── translations_controller.rb │ │ ├── user_packs_controller.rb │ │ ├── users_controller.rb │ │ ├── version_controller.rb │ │ └── wallet_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── api │ │ │ └── order_concern.rb │ ├── confirmations_controller.rb │ ├── health_controller.rb │ ├── open_api │ │ └── v1 │ │ │ ├── accounting_controller.rb │ │ │ ├── availabilities_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── bookable_machines_controller.rb │ │ │ ├── concerns │ │ │ ├── accountings_filters_concern.rb │ │ │ ├── availabilities_filters_concern.rb │ │ │ ├── reservations_filters_concern.rb │ │ │ └── subscriptions_filters_concern.rb │ │ │ ├── events_controller.rb │ │ │ ├── invoices_controller.rb │ │ │ ├── machines_controller.rb │ │ │ ├── plan_categories_controller.rb │ │ │ ├── plans_controller.rb │ │ │ ├── prices_controller.rb │ │ │ ├── reservations_controller.rb │ │ │ ├── spaces_controller.rb │ │ │ ├── subscriptions_controller.rb │ │ │ ├── trainings_controller.rb │ │ │ ├── user_trainings_controller.rb │ │ │ └── users_controller.rb │ ├── passwords_controller.rb │ ├── public_reservation_ical_controller.rb │ ├── registrations_controller.rb │ ├── rss │ │ ├── events_controller.rb │ │ ├── projects_controller.rb │ │ └── rss_controller.rb │ ├── sessions_controller.rb │ ├── social_bot_controller.rb │ └── users │ │ └── omniauth_callbacks_controller.rb ├── doc │ └── open_api │ │ ├── api_doc.rb │ │ ├── application_doc.rb │ │ └── v1 │ │ ├── accounting_doc.rb │ │ ├── availabilities_doc.rb │ │ ├── base_doc.rb │ │ ├── bookable_machines_doc.rb │ │ ├── concerns │ │ └── param_groups.rb │ │ ├── events_doc.rb │ │ ├── invoices_doc.rb │ │ ├── machines_doc.rb │ │ ├── plan_categories_doc.rb │ │ ├── plans_doc.rb │ │ ├── prices_doc.rb │ │ ├── reservations_doc.rb │ │ ├── spaces_doc.rb │ │ ├── subscriptions_doc.rb │ │ ├── trainings_doc.rb │ │ ├── user_trainings_doc.rb │ │ └── users_doc.rb ├── exceptions │ ├── cannot_delete_product_error.rb │ ├── cannot_refund_error.rb │ ├── cart │ │ ├── anonymous_error.rb │ │ ├── inactive_product_error.rb │ │ ├── item_amount_error.rb │ │ ├── out_stock_error.rb │ │ ├── quantity_min_error.rb │ │ ├── unknown_item_error.rb │ │ └── zero_price_error.rb │ ├── configuration_error.rb │ ├── debit_wallet_error.rb │ ├── duplicate_index_error.rb │ ├── invalid_coupon_error.rb │ ├── invalid_footprint_error.rb │ ├── invalid_group_error.rb │ ├── invalid_invoice_error.rb │ ├── invalid_subscription_error.rb │ ├── invoice_total_different_error.rb │ ├── locked_error.rb │ ├── no_profile_error.rb │ ├── payment_gateway_error.rb │ ├── payzen_error.rb │ └── update_order_state_error.rb ├── frontend │ ├── application.js.erb │ ├── application.scss │ ├── images │ │ ├── arrow-left.png │ │ ├── default-image.png │ │ ├── fabmanager-logo.png │ │ ├── github.svg │ │ ├── icons.svg │ │ ├── mastercard.png │ │ ├── no_avatar.png │ │ ├── no_image.png │ │ ├── payzen-secure.png │ │ ├── powered_by_stripe.png │ │ ├── social │ │ │ ├── dailymotion.png │ │ │ └── echosciences.png │ │ └── visa.png │ ├── plugins.scss.erb │ ├── printer.scss │ ├── src │ │ ├── javascript │ │ │ ├── api │ │ │ │ ├── age-range.ts │ │ │ │ ├── auth-provider.ts │ │ │ │ ├── authentication.ts │ │ │ │ ├── cart.ts │ │ │ │ ├── checkout.ts │ │ │ │ ├── child.ts │ │ │ │ ├── clients │ │ │ │ │ ├── api-client.ts │ │ │ │ │ ├── sso-client.ts │ │ │ │ │ └── stripe-client.ts │ │ │ │ ├── coupon.ts │ │ │ │ ├── credit.ts │ │ │ │ ├── custom-asset.ts │ │ │ │ ├── event-category.ts │ │ │ │ ├── event-price-category.ts │ │ │ │ ├── event-theme.ts │ │ │ │ ├── event.ts │ │ │ │ ├── external │ │ │ │ │ ├── sso.ts │ │ │ │ │ └── stripe.ts │ │ │ │ ├── group.ts │ │ │ │ ├── local-payment.ts │ │ │ │ ├── machine-category.ts │ │ │ │ ├── machine.ts │ │ │ │ ├── member.ts │ │ │ │ ├── notification.ts │ │ │ │ ├── notification_preference.ts │ │ │ │ ├── notification_types.ts │ │ │ │ ├── order.ts │ │ │ │ ├── payment-schedule.ts │ │ │ │ ├── payzen.ts │ │ │ │ ├── plan-category.ts │ │ │ │ ├── plan.ts │ │ │ │ ├── prepaid-pack.ts │ │ │ │ ├── price.ts │ │ │ │ ├── product-category.ts │ │ │ │ ├── product.ts │ │ │ │ ├── profile-custom-field.ts │ │ │ │ ├── project-category.ts │ │ │ │ ├── reservation.ts │ │ │ │ ├── reservation_context.ts │ │ │ │ ├── setting.ts │ │ │ │ ├── space.ts │ │ │ │ ├── status.ts │ │ │ │ ├── stripe.ts │ │ │ │ ├── subscription.ts │ │ │ │ ├── supporting-document-file.ts │ │ │ │ ├── supporting-document-refusal.ts │ │ │ │ ├── supporting-document-type.ts │ │ │ │ ├── tag.ts │ │ │ │ ├── theme.ts │ │ │ │ ├── training.ts │ │ │ │ ├── user-pack.ts │ │ │ │ ├── user.ts │ │ │ │ └── wallet.ts │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── README.md │ │ │ │ ├── accounting │ │ │ │ │ ├── accounting-codes-settings.tsx │ │ │ │ │ └── advanced-accounting-form.tsx │ │ │ │ ├── angular │ │ │ │ │ └── switch.ts │ │ │ │ ├── authentication-provider │ │ │ │ │ ├── boolean-mapping-form.tsx │ │ │ │ │ ├── data-mapping-form.tsx │ │ │ │ │ ├── database-form.tsx │ │ │ │ │ ├── date-mapping-form.tsx │ │ │ │ │ ├── integer-mapping-form.tsx │ │ │ │ │ ├── oauth2-data-mapping-form.tsx │ │ │ │ │ ├── oauth2-form.tsx │ │ │ │ │ ├── openid-connect-data-mapping-form.tsx │ │ │ │ │ ├── openid-connect-form.tsx │ │ │ │ │ ├── provider-form.tsx │ │ │ │ │ ├── saml-data-mapping-form.tsx │ │ │ │ │ ├── saml-form.tsx │ │ │ │ │ ├── string-mapping-form.tsx │ │ │ │ │ └── type-mapping-modal.tsx │ │ │ │ ├── base │ │ │ │ │ ├── accordion-item.tsx │ │ │ │ │ ├── destroy-button.tsx │ │ │ │ │ ├── edit-destroy-buttons.tsx │ │ │ │ │ ├── error-boundary.tsx │ │ │ │ │ ├── fab-alert.tsx │ │ │ │ │ ├── fab-badge.tsx │ │ │ │ │ ├── fab-button.tsx │ │ │ │ │ ├── fab-input.tsx │ │ │ │ │ ├── fab-modal.tsx │ │ │ │ │ ├── fab-output-copy.tsx │ │ │ │ │ ├── fab-pagination.tsx │ │ │ │ │ ├── fab-panel.tsx │ │ │ │ │ ├── fab-popover.tsx │ │ │ │ │ ├── fab-state-label.tsx │ │ │ │ │ ├── fab-tabs.tsx │ │ │ │ │ ├── html-translate.tsx │ │ │ │ │ ├── labelled-input.tsx │ │ │ │ │ ├── loader.tsx │ │ │ │ │ └── text-editor │ │ │ │ │ │ ├── fab-text-editor.tsx │ │ │ │ │ │ ├── iframe.tsx │ │ │ │ │ │ └── menu-bar.tsx │ │ │ │ ├── cart │ │ │ │ │ ├── abstract-item.tsx │ │ │ │ │ ├── cart-button.tsx │ │ │ │ │ ├── cart-order-product.tsx │ │ │ │ │ ├── cart-order-reservation.tsx │ │ │ │ │ └── store-cart.tsx │ │ │ │ ├── coupon │ │ │ │ │ └── coupon-input.tsx │ │ │ │ ├── dashboard │ │ │ │ │ ├── orders │ │ │ │ │ │ └── orders-dashboard.tsx │ │ │ │ │ └── reservations │ │ │ │ │ │ ├── credits-panel.tsx │ │ │ │ │ │ ├── prepaid-packs-panel.tsx │ │ │ │ │ │ ├── reservations-dashboard.tsx │ │ │ │ │ │ └── reservations-panel.tsx │ │ │ │ ├── document-filters.tsx │ │ │ │ ├── editorial-block │ │ │ │ │ ├── editorial-block-form.tsx │ │ │ │ │ └── editorial-block.tsx │ │ │ │ ├── events │ │ │ │ │ ├── event-card.tsx │ │ │ │ │ ├── event-form.tsx │ │ │ │ │ ├── event-reservation-item.tsx │ │ │ │ │ ├── events-editorial-block.tsx │ │ │ │ │ ├── events-settings.tsx │ │ │ │ │ └── update-recurrent-modal.tsx │ │ │ │ ├── family-account │ │ │ │ │ ├── child-form.tsx │ │ │ │ │ ├── child-item.tsx │ │ │ │ │ ├── child-modal.tsx │ │ │ │ │ ├── child-validation.tsx │ │ │ │ │ ├── children-dashboard.tsx │ │ │ │ │ └── delete-child-modal.tsx │ │ │ │ ├── form │ │ │ │ │ ├── README.md │ │ │ │ │ ├── abstract-form-item.tsx │ │ │ │ │ ├── form-checklist.tsx │ │ │ │ │ ├── form-file-upload.tsx │ │ │ │ │ ├── form-image-upload.tsx │ │ │ │ │ ├── form-input.tsx │ │ │ │ │ ├── form-multi-file-upload.tsx │ │ │ │ │ ├── form-multi-image-upload.tsx │ │ │ │ │ ├── form-multi-select.tsx │ │ │ │ │ ├── form-rich-text.tsx │ │ │ │ │ ├── form-select.tsx │ │ │ │ │ ├── form-switch.tsx │ │ │ │ │ ├── form-unsaved-list.tsx │ │ │ │ │ └── unsaved-form-alert.tsx │ │ │ │ ├── group │ │ │ │ │ └── change-group.tsx │ │ │ │ ├── invoices │ │ │ │ │ ├── invoices-settings-panel.tsx │ │ │ │ │ └── vat-settings-modal.tsx │ │ │ │ ├── machines │ │ │ │ │ ├── machine-card.tsx │ │ │ │ │ ├── machine-categories-list.tsx │ │ │ │ │ ├── machine-category-form.tsx │ │ │ │ │ ├── machine-category-modal.tsx │ │ │ │ │ ├── machine-form.tsx │ │ │ │ │ ├── machines-editorial-block.tsx │ │ │ │ │ ├── machines-filters.tsx │ │ │ │ │ ├── machines-list.tsx │ │ │ │ │ ├── machines-settings.tsx │ │ │ │ │ ├── pending-training-modal.tsx │ │ │ │ │ ├── required-training-modal.tsx │ │ │ │ │ └── reserve-button.tsx │ │ │ │ ├── notifications │ │ │ │ │ ├── notification-form.tsx │ │ │ │ │ ├── notification-inline.tsx │ │ │ │ │ ├── notifications-category.tsx │ │ │ │ │ ├── notifications-center.tsx │ │ │ │ │ ├── notifications-list.tsx │ │ │ │ │ └── notifications-settings.tsx │ │ │ │ ├── payment-schedule │ │ │ │ │ ├── payment-schedule-item-actions.tsx │ │ │ │ │ ├── payment-schedule-summary.tsx │ │ │ │ │ ├── payment-schedules-dashboard.tsx │ │ │ │ │ ├── payment-schedules-list.tsx │ │ │ │ │ ├── payment-schedules-table.tsx │ │ │ │ │ ├── select-schedule.tsx │ │ │ │ │ └── update-payment-mean-modal.tsx │ │ │ │ ├── payment │ │ │ │ │ ├── abstract-payment-modal.tsx │ │ │ │ │ ├── card-payment-modal.tsx │ │ │ │ │ ├── local-payment │ │ │ │ │ │ ├── local-payment-form.tsx │ │ │ │ │ │ └── local-payment-modal.tsx │ │ │ │ │ ├── payzen │ │ │ │ │ │ ├── payzen-card-update-modal.tsx │ │ │ │ │ │ ├── payzen-form.tsx │ │ │ │ │ │ ├── payzen-keys-form.tsx │ │ │ │ │ │ ├── payzen-modal.tsx │ │ │ │ │ │ └── payzen-settings.tsx │ │ │ │ │ ├── select-gateway-modal.tsx │ │ │ │ │ ├── stripe │ │ │ │ │ │ ├── payment-modal.tsx │ │ │ │ │ │ ├── stripe-card-update-modal.tsx │ │ │ │ │ │ ├── stripe-card-update.tsx │ │ │ │ │ │ ├── stripe-confirm-modal.tsx │ │ │ │ │ │ ├── stripe-confirm.tsx │ │ │ │ │ │ ├── stripe-elements.tsx │ │ │ │ │ │ ├── stripe-form.tsx │ │ │ │ │ │ ├── stripe-keys-form.tsx │ │ │ │ │ │ └── stripe-modal.tsx │ │ │ │ │ ├── update-card-modal.tsx │ │ │ │ │ └── wallet-info.tsx │ │ │ │ ├── plan-categories │ │ │ │ │ ├── delete-plan-category.tsx │ │ │ │ │ ├── manage-plan-category.tsx │ │ │ │ │ ├── plan-categories-list.tsx │ │ │ │ │ └── plan-category-form.tsx │ │ │ │ ├── plans │ │ │ │ │ ├── partner-modal.tsx │ │ │ │ │ ├── plan-card.tsx │ │ │ │ │ ├── plan-form.tsx │ │ │ │ │ ├── plan-limit-form.tsx │ │ │ │ │ ├── plan-limit-modal.tsx │ │ │ │ │ ├── plan-pricing-form.tsx │ │ │ │ │ ├── plans-filter.tsx │ │ │ │ │ └── plans-list.tsx │ │ │ │ ├── prepaid-packs │ │ │ │ │ ├── packs-summary.tsx │ │ │ │ │ └── propose-packs-modal.tsx │ │ │ │ ├── pricing │ │ │ │ │ ├── editable-price.tsx │ │ │ │ │ ├── machines │ │ │ │ │ │ ├── configure-packs-button.tsx │ │ │ │ │ │ ├── create-pack.tsx │ │ │ │ │ │ ├── edit-pack.tsx │ │ │ │ │ │ ├── machines-pricing.tsx │ │ │ │ │ │ └── pack-form.tsx │ │ │ │ │ └── spaces │ │ │ │ │ │ ├── configure-extended-prices-button.tsx │ │ │ │ │ │ ├── create-extended-price.tsx │ │ │ │ │ │ ├── delete-extended-price.tsx │ │ │ │ │ │ ├── edit-extended-price.tsx │ │ │ │ │ │ ├── extended-price-form.tsx │ │ │ │ │ │ └── spaces-pricing.tsx │ │ │ │ ├── profile-completion │ │ │ │ │ ├── completion-header-info.tsx │ │ │ │ │ └── profile-form-option.tsx │ │ │ │ ├── profile-custom-fields │ │ │ │ │ └── profile-custom-fields-list.tsx │ │ │ │ ├── projects │ │ │ │ │ ├── projects-setting-option-form.tsx │ │ │ │ │ ├── projects-setting-option.tsx │ │ │ │ │ ├── projects-setting.tsx │ │ │ │ │ └── status │ │ │ │ │ │ ├── status-filter.tsx │ │ │ │ │ │ └── status-settings.tsx │ │ │ │ ├── reservations │ │ │ │ │ ├── ongoing-reservation-panel.tsx │ │ │ │ │ └── reservations-summary.tsx │ │ │ │ ├── settings │ │ │ │ │ ├── boolean-setting.tsx │ │ │ │ │ ├── check-list-setting.tsx │ │ │ │ │ ├── setting-history-modal.tsx │ │ │ │ │ └── user-validation-setting.tsx │ │ │ │ ├── socials │ │ │ │ │ ├── edit-socials.tsx │ │ │ │ │ └── fab-socials.tsx │ │ │ │ ├── spaces │ │ │ │ │ └── space-form.tsx │ │ │ │ ├── store │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── manage-product-category.tsx │ │ │ │ │ │ ├── product-categories-item.tsx │ │ │ │ │ │ ├── product-categories-tree.tsx │ │ │ │ │ │ ├── product-categories.tsx │ │ │ │ │ │ └── product-category-form.tsx │ │ │ │ │ ├── clone-product-modal.tsx │ │ │ │ │ ├── edit-product.tsx │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── active-filters-tags.tsx │ │ │ │ │ │ ├── categories-filter.tsx │ │ │ │ │ │ ├── keyword-filter.tsx │ │ │ │ │ │ ├── machines-filter.tsx │ │ │ │ │ │ └── stock-filter.tsx │ │ │ │ │ ├── new-product.tsx │ │ │ │ │ ├── order-actions.tsx │ │ │ │ │ ├── order-item.tsx │ │ │ │ │ ├── orders.tsx │ │ │ │ │ ├── product-form.tsx │ │ │ │ │ ├── product-item.tsx │ │ │ │ │ ├── product-price.tsx │ │ │ │ │ ├── product-stock-form.tsx │ │ │ │ │ ├── product-stock-modal.tsx │ │ │ │ │ ├── products.tsx │ │ │ │ │ ├── show-order.tsx │ │ │ │ │ ├── store-list-header.tsx │ │ │ │ │ ├── store-product-item.tsx │ │ │ │ │ ├── store-product.tsx │ │ │ │ │ ├── store-settings.tsx │ │ │ │ │ └── store.tsx │ │ │ │ ├── subscriptions │ │ │ │ │ ├── cancel-subscription-modal.tsx │ │ │ │ │ ├── free-extend-modal.tsx │ │ │ │ │ ├── renew-modal.tsx │ │ │ │ │ └── subscribe-modal.tsx │ │ │ │ ├── supporting-documents │ │ │ │ │ ├── delete-supporting-documents-type-modal.tsx │ │ │ │ │ ├── supporting-documents-files.tsx │ │ │ │ │ ├── supporting-documents-refusal-form.tsx │ │ │ │ │ ├── supporting-documents-refusal-modal.tsx │ │ │ │ │ ├── supporting-documents-type-form.tsx │ │ │ │ │ ├── supporting-documents-type-modal.tsx │ │ │ │ │ ├── supporting-documents-types-list.tsx │ │ │ │ │ └── supporting-documents-validation.tsx │ │ │ │ ├── trainings │ │ │ │ │ ├── training-editorial-block.tsx │ │ │ │ │ ├── training-form.tsx │ │ │ │ │ ├── trainings-settings.tsx │ │ │ │ │ └── trainings.tsx │ │ │ │ └── user │ │ │ │ │ ├── avatar-input.tsx │ │ │ │ │ ├── avatar.tsx │ │ │ │ │ ├── change-password.tsx │ │ │ │ │ ├── change-role-modal.tsx │ │ │ │ │ ├── gender-input.tsx │ │ │ │ │ ├── member-select.tsx │ │ │ │ │ ├── members-list-item.tsx │ │ │ │ │ ├── members-list.tsx │ │ │ │ │ ├── password-input.tsx │ │ │ │ │ ├── password-strength.tsx │ │ │ │ │ ├── user-profile-form.tsx │ │ │ │ │ └── user-validation.tsx │ │ │ ├── controllers │ │ │ │ ├── about.js │ │ │ │ ├── admin │ │ │ │ │ ├── abuses.js │ │ │ │ │ ├── authentications.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── coupons.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── graphs.js │ │ │ │ │ ├── groups.js │ │ │ │ │ ├── invoices.js │ │ │ │ │ ├── machines.js │ │ │ │ │ ├── members.js │ │ │ │ │ ├── open_api_clients.js │ │ │ │ │ ├── orders.js │ │ │ │ │ ├── plans.js │ │ │ │ │ ├── price_category.js │ │ │ │ │ ├── pricing.js │ │ │ │ │ ├── projects.js │ │ │ │ │ ├── settings.js │ │ │ │ │ ├── statistics.js │ │ │ │ │ ├── store.js │ │ │ │ │ ├── store_products.js │ │ │ │ │ ├── tags.js │ │ │ │ │ └── trainings.js │ │ │ │ ├── application.js │ │ │ │ ├── calendar.js │ │ │ │ ├── cart.js │ │ │ │ ├── children.js │ │ │ │ ├── cookies.js │ │ │ │ ├── dashboard.js │ │ │ │ ├── events.js.erb │ │ │ │ ├── header.js │ │ │ │ ├── home.js │ │ │ │ ├── machines.js.erb │ │ │ │ ├── main_nav.js │ │ │ │ ├── members.js │ │ │ │ ├── notifications.js │ │ │ │ ├── orders.js │ │ │ │ ├── plans.js │ │ │ │ ├── privacy.js │ │ │ │ ├── products.js │ │ │ │ ├── profile.js │ │ │ │ ├── projects.js │ │ │ │ ├── spaces.js.erb │ │ │ │ ├── store.js │ │ │ │ ├── trainings.js.erb │ │ │ │ └── wallet.js │ │ │ ├── directives │ │ │ │ ├── bs-jasny-fileinput.js │ │ │ │ ├── cart.js │ │ │ │ ├── compile.js │ │ │ │ ├── confirmation_needed.js │ │ │ │ ├── coupon.js │ │ │ │ ├── directives.js │ │ │ │ ├── fab_user_avatar.js │ │ │ │ ├── home │ │ │ │ │ ├── events.js │ │ │ │ │ ├── news.js │ │ │ │ │ ├── projects.js │ │ │ │ │ └── twitter.js │ │ │ │ ├── members.js │ │ │ │ ├── post_render.js │ │ │ │ ├── selectMember.js │ │ │ │ ├── settings │ │ │ │ │ ├── number-setting.js │ │ │ │ │ ├── select-multiple-setting.js │ │ │ │ │ ├── select-setting.js │ │ │ │ │ └── text-setting.js │ │ │ │ ├── socialLink.js │ │ │ │ └── validators.js │ │ │ ├── filters │ │ │ │ └── filters.js │ │ │ ├── hooks │ │ │ │ └── use-cart.ts │ │ │ ├── lib │ │ │ │ ├── api.ts │ │ │ │ ├── cart-token.ts │ │ │ │ ├── coupon.ts │ │ │ │ ├── deferred.ts │ │ │ │ ├── devise-modal.js │ │ │ │ ├── dirDisqus.js │ │ │ │ ├── file-upload.ts │ │ │ │ ├── format.ts │ │ │ │ ├── gtm.js │ │ │ │ ├── humanize.js │ │ │ │ ├── i18n.ts │ │ │ │ ├── localise.ts │ │ │ │ ├── order.ts │ │ │ │ ├── parsing.ts │ │ │ │ ├── polyfill.js │ │ │ │ ├── product.ts │ │ │ │ ├── setting.ts │ │ │ │ ├── summernote-ext-nugget.js │ │ │ │ ├── use-previous.ts │ │ │ │ ├── user.ts │ │ │ │ ├── validation.ts │ │ │ │ └── wallet.ts │ │ │ ├── models │ │ │ │ ├── advanced-accounting.ts │ │ │ │ ├── api.ts │ │ │ │ ├── application.ts │ │ │ │ ├── authentication-provider.ts │ │ │ │ ├── cart_item.ts │ │ │ │ ├── child.ts │ │ │ │ ├── coupon.ts │ │ │ │ ├── credit.ts │ │ │ │ ├── custom-asset.ts │ │ │ │ ├── event.ts │ │ │ │ ├── fablab.ts │ │ │ │ ├── file.ts │ │ │ │ ├── form-component.ts │ │ │ │ ├── gateway.ts │ │ │ │ ├── group.ts │ │ │ │ ├── gtm.ts │ │ │ │ ├── history-value.ts │ │ │ │ ├── invoice.ts │ │ │ │ ├── machine-category.ts │ │ │ │ ├── machine.ts │ │ │ │ ├── member.ts │ │ │ │ ├── notification-preference.ts │ │ │ │ ├── notification-type.ts │ │ │ │ ├── notification.ts │ │ │ │ ├── order.ts │ │ │ │ ├── payment-schedule.ts │ │ │ │ ├── payment.ts │ │ │ │ ├── payzen.ts │ │ │ │ ├── plan-category.ts │ │ │ │ ├── plan.ts │ │ │ │ ├── prepaid-pack.ts │ │ │ │ ├── price.ts │ │ │ │ ├── product-category.ts │ │ │ │ ├── product.ts │ │ │ │ ├── profile-custom-field.ts │ │ │ │ ├── project-category.ts │ │ │ │ ├── project-setting-option.ts │ │ │ │ ├── reservation.ts │ │ │ │ ├── select.ts │ │ │ │ ├── setting.ts │ │ │ │ ├── slot.ts │ │ │ │ ├── social-network.ts │ │ │ │ ├── space.ts │ │ │ │ ├── sso.ts │ │ │ │ ├── status.ts │ │ │ │ ├── stripe.ts │ │ │ │ ├── subscription.ts │ │ │ │ ├── supporting-document-file.ts │ │ │ │ ├── supporting-document-refusal.ts │ │ │ │ ├── supporting-document-type.ts │ │ │ │ ├── tag.ts │ │ │ │ ├── theme.ts │ │ │ │ ├── training.ts │ │ │ │ ├── user-pack.ts │ │ │ │ ├── user.ts │ │ │ │ └── wallet.ts │ │ │ ├── plugins.js.erb │ │ │ ├── router.js │ │ │ ├── services │ │ │ │ ├── _t.js │ │ │ │ ├── abuse.js │ │ │ │ ├── accounting_period.js │ │ │ │ ├── admin.js │ │ │ │ ├── age_range.js │ │ │ │ ├── auth.js │ │ │ │ ├── authProvider.js │ │ │ │ ├── availability.js │ │ │ │ ├── calendar.js │ │ │ │ ├── category.js │ │ │ │ ├── child.js │ │ │ │ ├── component.js │ │ │ │ ├── coupon.js │ │ │ │ ├── credit.js │ │ │ │ ├── csrf.js │ │ │ │ ├── customAsset.js │ │ │ │ ├── diacritics.js │ │ │ │ ├── dialogs.js │ │ │ │ ├── elastic.js │ │ │ │ ├── event.js │ │ │ │ ├── event_theme.js │ │ │ │ ├── export.js │ │ │ │ ├── fab_analytics.js │ │ │ │ ├── group.js │ │ │ │ ├── help.js │ │ │ │ ├── helpers.js │ │ │ │ ├── ical.js │ │ │ │ ├── icalendar.js │ │ │ │ ├── import.js │ │ │ │ ├── invoice.js │ │ │ │ ├── licence.js │ │ │ │ ├── local_payment.js │ │ │ │ ├── machine.js │ │ │ │ ├── machine_category.js │ │ │ │ ├── member.js │ │ │ │ ├── notification.js │ │ │ │ ├── open_api_client.js │ │ │ │ ├── openlab_project.js │ │ │ │ ├── pagination_service.js │ │ │ │ ├── payment.js │ │ │ │ ├── plan.js │ │ │ │ ├── plan_category.js │ │ │ │ ├── price.js │ │ │ │ ├── price_category.js │ │ │ │ ├── pricing.js │ │ │ │ ├── profile_custom_field.js │ │ │ │ ├── project.js │ │ │ │ ├── project_category.js │ │ │ │ ├── reservation.js │ │ │ │ ├── reservation_context.js │ │ │ │ ├── session.js │ │ │ │ ├── setting.js │ │ │ │ ├── slots_reservation.js │ │ │ │ ├── socialNetworks.js │ │ │ │ ├── space.js │ │ │ │ ├── statistics.js │ │ │ │ ├── status.js │ │ │ │ ├── subscription.js │ │ │ │ ├── supporting_document_type.js │ │ │ │ ├── tag.js │ │ │ │ ├── theme.js │ │ │ │ ├── training.js │ │ │ │ ├── trainings_pricing.js │ │ │ │ ├── translations.js │ │ │ │ ├── user.js │ │ │ │ ├── version.js │ │ │ │ └── wallet.js │ │ │ └── typings │ │ │ │ ├── date-iso.d.ts │ │ │ │ ├── import-png.d.ts │ │ │ │ └── import-svg.d.ts │ │ └── stylesheets │ │ │ ├── app.base.scss │ │ │ ├── app.buttons.scss │ │ │ ├── app.colors.scss │ │ │ ├── app.components.scss │ │ │ ├── app.functions.scss │ │ │ ├── app.layout.scss │ │ │ ├── app.nav.scss │ │ │ ├── app.plugins.scss │ │ │ ├── app.printer.scss │ │ │ ├── app.responsive.scss │ │ │ ├── app.utilities.scss │ │ │ ├── application.scss │ │ │ ├── bootstrap_and_overrides.scss │ │ │ ├── modules │ │ │ ├── abuses.scss │ │ │ ├── accounting │ │ │ │ └── accounting-codes-settings.scss │ │ │ ├── authentication-provider │ │ │ │ ├── array-mapping-form.scss │ │ │ │ ├── data-mapping-form.scss │ │ │ │ ├── openid-connect-data-mapping-form.scss │ │ │ │ ├── provider-form.scss │ │ │ │ ├── saml-data-mapping-form.scss │ │ │ │ └── type-mapping-modal.scss │ │ │ ├── base │ │ │ │ ├── edit-destroy-buttons.scss │ │ │ │ ├── editorial-block.scss │ │ │ │ ├── fab-alert.scss │ │ │ │ ├── fab-badge.scss │ │ │ │ ├── fab-button.scss │ │ │ │ ├── fab-input.scss │ │ │ │ ├── fab-modal.scss │ │ │ │ ├── fab-output-copy.scss │ │ │ │ ├── fab-pagination.scss │ │ │ │ ├── fab-panel.scss │ │ │ │ ├── fab-popover.scss │ │ │ │ ├── fab-state-label.scss │ │ │ │ ├── fab-tabs.scss │ │ │ │ ├── fab-text-editor.scss │ │ │ │ ├── fab-tooltip.scss │ │ │ │ └── labelled-input.scss │ │ │ ├── calendar │ │ │ │ └── calendar.scss │ │ │ ├── cart │ │ │ │ ├── cart-button.scss │ │ │ │ ├── cart-order-reservation.scss │ │ │ │ └── store-cart.scss │ │ │ ├── cookies.scss │ │ │ ├── dashboard.scss │ │ │ ├── dashboard │ │ │ │ └── reservations │ │ │ │ │ ├── credits-panel.scss │ │ │ │ │ ├── prepaid-packs-panel.scss │ │ │ │ │ ├── reservations-dashboard.scss │ │ │ │ │ └── reservations-panel.scss │ │ │ ├── document-filters.scss │ │ │ ├── event-themes.scss │ │ │ ├── events │ │ │ │ ├── event-form.scss │ │ │ │ ├── event-reservation.scss │ │ │ │ ├── event.scss │ │ │ │ ├── events-dashboard.scss │ │ │ │ ├── events-settings.scss │ │ │ │ ├── events.scss │ │ │ │ └── update-recurrent-modal.scss │ │ │ ├── family-account │ │ │ │ ├── child-form.scss │ │ │ │ ├── child-item.scss │ │ │ │ └── children-dashboard.scss │ │ │ ├── form │ │ │ │ ├── abstract-form-item.scss │ │ │ │ ├── form-checklist.scss │ │ │ │ ├── form-file-upload.scss │ │ │ │ ├── form-image-upload.scss │ │ │ │ ├── form-input.scss │ │ │ │ ├── form-multi-file-upload.scss │ │ │ │ ├── form-multi-image-upload.scss │ │ │ │ ├── form-rich-text.scss │ │ │ │ ├── form-select.scss │ │ │ │ ├── form-switch.scss │ │ │ │ └── form-unsaved-list.scss │ │ │ ├── group │ │ │ │ └── change-group.scss │ │ │ ├── icalendar.scss │ │ │ ├── invoice.scss │ │ │ ├── invoices │ │ │ │ ├── invoices-settings-panel.scss │ │ │ │ └── vat-settings-modal.scss │ │ │ ├── layout │ │ │ │ └── header-page.scss │ │ │ ├── machines │ │ │ │ ├── machine-card.scss │ │ │ │ ├── machine-categories.scss │ │ │ │ ├── machine-form.scss │ │ │ │ ├── machines-filters.scss │ │ │ │ ├── machines-list.scss │ │ │ │ ├── machines-settings.scss │ │ │ │ ├── machines.scss │ │ │ │ └── required-training-modal.scss │ │ │ ├── members.scss │ │ │ ├── notifications │ │ │ │ ├── notification-form.scss │ │ │ │ ├── notification-inline.scss │ │ │ │ ├── notifications-category.scss │ │ │ │ └── notifications-list.scss │ │ │ ├── payment-schedule │ │ │ │ ├── payment-schedule-dashboard.scss │ │ │ │ ├── payment-schedule-summary.scss │ │ │ │ ├── payment-schedules-list.scss │ │ │ │ └── payment-schedules-table.scss │ │ │ ├── payment │ │ │ │ ├── abstract-payment-modal.scss │ │ │ │ ├── local-payment │ │ │ │ │ └── local-payment-modal.scss │ │ │ │ ├── payzen │ │ │ │ │ ├── payzen-card-update-modal.scss │ │ │ │ │ ├── payzen-keys-form.scss │ │ │ │ │ ├── payzen-modal.scss │ │ │ │ │ └── payzen-settings.scss │ │ │ │ └── stripe │ │ │ │ │ ├── stripe-card-update-modal.scss │ │ │ │ │ ├── stripe-confirm.scss │ │ │ │ │ ├── stripe-keys-form.scss │ │ │ │ │ └── stripe-modal.scss │ │ │ ├── plan-categories │ │ │ │ ├── delete-plan-category.scss │ │ │ │ ├── manage-plan-category.scss │ │ │ │ └── plan-categories-list.scss │ │ │ ├── plans │ │ │ │ ├── plan-card.scss │ │ │ │ ├── plan-form.scss │ │ │ │ ├── plan-limit-form.scss │ │ │ │ ├── plan-limit-modal.scss │ │ │ │ ├── plan-pricing-form.scss │ │ │ │ ├── plans-filter.scss │ │ │ │ └── plans-list.scss │ │ │ ├── prepaid-packs │ │ │ │ ├── packs-summary.scss │ │ │ │ └── propose-packs-modal.scss │ │ │ ├── pricing │ │ │ │ ├── editable-price.scss │ │ │ │ ├── machines │ │ │ │ │ ├── configure-packs-button.scss │ │ │ │ │ ├── create-pack.scss │ │ │ │ │ ├── edit-pack.scss │ │ │ │ │ ├── machines-pricing.scss │ │ │ │ │ └── pack-form.scss │ │ │ │ └── spaces │ │ │ │ │ ├── configure-extended-prices-button.scss │ │ │ │ │ ├── create-extended-price.scss │ │ │ │ │ ├── delete-extended-price.scss │ │ │ │ │ ├── edit-extended-price.scss │ │ │ │ │ ├── extended-price-form.scss │ │ │ │ │ └── spaces-pricing.scss │ │ │ ├── profile-completion │ │ │ │ ├── completion-header-info.scss │ │ │ │ └── profile-form-option.scss │ │ │ ├── profile-custom-fields │ │ │ │ └── profile-custom-fields-list.scss │ │ │ ├── projects │ │ │ │ ├── project-card.scss │ │ │ │ ├── projects-setting.scss │ │ │ │ └── projects.scss │ │ │ ├── select-gateway-modal.scss │ │ │ ├── settings.scss │ │ │ ├── settings │ │ │ │ ├── boolean-setting.scss │ │ │ │ ├── check-list-setting.scss │ │ │ │ ├── setting-history-modal.scss │ │ │ │ └── user-validation-setting.scss │ │ │ ├── signup.scss │ │ │ ├── socials │ │ │ │ └── fab-socials.scss │ │ │ ├── spaces │ │ │ │ ├── space-form.scss │ │ │ │ └── spaces.scss │ │ │ ├── store │ │ │ │ ├── _utilities.scss │ │ │ │ ├── order-actions.scss │ │ │ │ ├── order-item.scss │ │ │ │ ├── orders-dashboard.scss │ │ │ │ ├── orders.scss │ │ │ │ ├── product-categories.scss │ │ │ │ ├── product-category-form.scss │ │ │ │ ├── product-form.scss │ │ │ │ ├── product-stock-form.scss │ │ │ │ ├── product-stock-modal.scss │ │ │ │ ├── products-grid.scss │ │ │ │ ├── products-list.scss │ │ │ │ ├── products.scss │ │ │ │ ├── store-filters.scss │ │ │ │ ├── store-list-header.scss │ │ │ │ ├── store-list.scss │ │ │ │ ├── store-settings.scss │ │ │ │ └── store.scss │ │ │ ├── stripe.scss │ │ │ ├── subscriptions │ │ │ │ ├── free-extend-modal.scss │ │ │ │ └── renew-modal.scss │ │ │ ├── supporting-documents │ │ │ │ ├── supporting-documents-files.scss │ │ │ │ ├── supporting-documents-refusal-form.scss │ │ │ │ ├── supporting-documents-type-form.scss │ │ │ │ ├── supporting-documents-types-list.scss │ │ │ │ └── supporting-documents-validation.scss │ │ │ ├── tour.scss │ │ │ ├── trainings │ │ │ │ ├── training-form.scss │ │ │ │ ├── trainings-settings.scss │ │ │ │ └── trainings.scss │ │ │ ├── user │ │ │ │ ├── avatar-input.scss │ │ │ │ ├── avatar.scss │ │ │ │ ├── change-password.scss │ │ │ │ ├── gender-input.scss │ │ │ │ ├── member-select.scss │ │ │ │ ├── password-strength.scss │ │ │ │ ├── user-profile-form.scss │ │ │ │ └── user-validation.scss │ │ │ └── wallet-info.scss │ │ │ ├── overrides.scss │ │ │ └── variables │ │ │ ├── animations.scss │ │ │ ├── colors.scss │ │ │ ├── component.scss │ │ │ ├── decoration.scss │ │ │ ├── layout.scss │ │ │ └── typography.scss │ └── templates │ │ ├── admin │ │ ├── abuses │ │ │ └── index.html │ │ ├── admins │ │ │ └── new.html │ │ ├── authentications │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ └── new.html │ │ ├── calendar │ │ │ ├── calendar.html │ │ │ ├── deleteRecurrent.html │ │ │ ├── eventModal.html │ │ │ └── icalendar.html │ │ ├── coupons │ │ │ ├── _form.html │ │ │ ├── edit.html │ │ │ └── new.html │ │ ├── events │ │ │ ├── filters.html │ │ │ ├── index.html │ │ │ ├── monitoring.html │ │ │ ├── pay_reservation_modal.html │ │ │ ├── price_form.html │ │ │ ├── prices.html │ │ │ └── reservations.html │ │ ├── groups │ │ │ └── index.html │ │ ├── invoices │ │ │ ├── _period.html │ │ │ ├── accountingExportModal.html │ │ │ ├── avoirModal.html │ │ │ ├── closePeriodModal.html │ │ │ ├── codes.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── payment.html │ │ │ ├── settings.html │ │ │ └── settings │ │ │ │ ├── editCode.html │ │ │ │ ├── editNumber.html │ │ │ │ ├── editReference.html │ │ │ │ └── stripeKeys.html │ │ ├── machines │ │ │ ├── categories.html │ │ │ ├── index.html │ │ │ └── machines.html │ │ ├── managers │ │ │ └── new.html │ │ ├── members │ │ │ ├── _form.html │ │ │ ├── administrators.html │ │ │ ├── change_role_modal.html │ │ │ ├── edit.html │ │ │ ├── import.html │ │ │ ├── import_result.html │ │ │ ├── index.html │ │ │ ├── managers.html │ │ │ ├── members.html │ │ │ ├── new.html │ │ │ ├── partners.html │ │ │ └── users.html │ │ ├── open_api_clients │ │ │ └── index.html.erb │ │ ├── orders │ │ │ └── show.html │ │ ├── plans │ │ │ ├── categories.html │ │ │ ├── edit.html │ │ │ └── new.html │ │ ├── pricing │ │ │ ├── coupons.html │ │ │ ├── credits.html │ │ │ ├── index.html │ │ │ ├── machine_hours.html │ │ │ ├── sendCoupon.html │ │ │ ├── spaces.html │ │ │ ├── subscriptions.html │ │ │ └── trainings.html │ │ ├── projects │ │ │ ├── index.html │ │ │ ├── licences.html │ │ │ ├── materials.html │ │ │ ├── project_categories.html │ │ │ ├── settings.html │ │ │ └── themes.html │ │ ├── settings │ │ │ ├── about.html │ │ │ ├── analyticsModal.html │ │ │ ├── compte.html │ │ │ ├── general.html │ │ │ ├── home_page.html │ │ │ ├── index.html │ │ │ ├── newSelectOption.html │ │ │ ├── number.html │ │ │ ├── privacy.html │ │ │ ├── reservations.html │ │ │ ├── save_policy.html │ │ │ ├── select-multiple.html │ │ │ ├── select.html │ │ │ └── text.html │ │ ├── statistics │ │ │ ├── export.html │ │ │ ├── graphs.html │ │ │ └── index.html │ │ ├── store │ │ │ ├── categories.html │ │ │ ├── index.html │ │ │ ├── orders.html │ │ │ ├── product_edit.html │ │ │ ├── product_new.html │ │ │ ├── products.html │ │ │ └── settings.html │ │ ├── tags │ │ │ └── index.html │ │ ├── trainings │ │ │ ├── edit.html │ │ │ ├── index.html │ │ │ ├── modal_edit.html │ │ │ ├── new.html │ │ │ └── validTrainingModal.html │ │ └── versions │ │ │ └── upgradeModal.html │ │ ├── calendar │ │ ├── calendar.html │ │ ├── chooseMachine.html │ │ ├── filter.html │ │ ├── filterAside.html │ │ └── ical_links.html │ │ ├── cart │ │ └── index.html │ │ ├── dashboard │ │ ├── children.html │ │ ├── events.html │ │ ├── invoices.html │ │ ├── nav.html │ │ ├── orders.html │ │ ├── payment_schedules.html │ │ ├── profile.html │ │ ├── projects.html │ │ ├── reservations.html │ │ ├── settings.html │ │ ├── supporting_document_files.html │ │ ├── trainings.html │ │ └── wallet.html │ │ ├── events │ │ ├── deleteRecurrent.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── modify_event_reservation_modal.html │ │ ├── new.html │ │ └── show.html │ │ ├── home.html │ │ ├── home │ │ ├── events.html │ │ ├── members.html │ │ ├── news.html │ │ ├── projects.html │ │ └── twitter.html │ │ ├── machines │ │ ├── edit.html │ │ ├── index.html │ │ ├── new.html │ │ ├── reserve.html │ │ └── show.html │ │ ├── members │ │ ├── index.html │ │ └── show.html │ │ ├── notifications │ │ └── index.html │ │ ├── orders │ │ └── show.html │ │ ├── plans │ │ ├── _plan.html │ │ └── index.html │ │ ├── products │ │ └── show.html │ │ ├── profile │ │ ├── _token.html │ │ ├── complete.html │ │ └── resend_code_modal.html │ │ ├── projects │ │ ├── _form.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── new.html │ │ └── show.html │ │ ├── shared │ │ ├── ConfirmationNewModal.html │ │ ├── _admin_form.html │ │ ├── _cart.html │ │ ├── _coupon.html │ │ ├── _manager_form.html │ │ ├── _member_select.html │ │ ├── _partner_new_modal.html │ │ ├── _reserve_slot_same_time.html │ │ ├── _reserve_slot_tags_mismatch.html │ │ ├── _reserve_slot_without_plan.html │ │ ├── _social_link.html │ │ ├── _user_avatar.html │ │ ├── about.html │ │ ├── confirm_modal.html │ │ ├── confirm_modify_slot_modal.html │ │ ├── cookies.html │ │ ├── deviseModal.html │ │ ├── header.html.erb │ │ ├── help_modal.html │ │ ├── leftnav.html │ │ ├── passwordEditModal.html │ │ ├── passwordNewModal.html │ │ ├── privacy.html │ │ ├── publicProfile.html.erb │ │ ├── signalAbuseModal.html │ │ ├── signupModal.html │ │ ├── tour-step-template.html │ │ └── valid_reservation_modal.html │ │ ├── spaces │ │ ├── edit.html │ │ ├── index.html │ │ ├── new.html │ │ ├── reserve.html │ │ └── show.html │ │ ├── store │ │ └── index.html │ │ ├── trainings │ │ ├── index.html │ │ ├── reserve.html │ │ └── show.html │ │ └── wallet │ │ ├── credit_modal.html │ │ ├── show.html │ │ └── transactions.html ├── helpers │ ├── application_helper.rb │ ├── availability_helper.rb │ ├── db_helper.rb │ ├── excel_helper.rb │ ├── settings_helper.rb │ └── upload_helper.rb ├── mailers │ ├── .keep │ ├── base_mailer.rb │ ├── notifications_mailer.rb │ ├── overwritten_devise_mailer.rb │ └── users_mailer.rb ├── models │ ├── .keep │ ├── abuse.rb │ ├── accounting_line.rb │ ├── accounting_period.rb │ ├── address.rb │ ├── advanced_accounting.rb │ ├── age_range.rb │ ├── application_record.rb │ ├── asset.rb │ ├── auth_provider.rb │ ├── auth_provider_mapping.rb │ ├── availability.rb │ ├── availability_tag.rb │ ├── avoir.rb │ ├── booking_user.rb │ ├── cart_item.rb │ ├── cart_item │ │ ├── base_item.rb │ │ ├── coupon.rb │ │ ├── event_reservation.rb │ │ ├── event_reservation_booking_user.rb │ │ ├── event_reservation_ticket.rb │ │ ├── free_extension.rb │ │ ├── machine_reservation.rb │ │ ├── payment_schedule.rb │ │ ├── prepaid_pack.rb │ │ ├── reservation.rb │ │ ├── reservation_slot.rb │ │ ├── space_reservation.rb │ │ ├── subscription.rb │ │ └── training_reservation.rb │ ├── category.rb │ ├── chained_element.rb │ ├── child.rb │ ├── component.rb │ ├── concerns │ │ ├── .keep │ │ ├── amount_concern.rb │ │ ├── i_calendar_concern.rb │ │ ├── image_validator_concern.rb │ │ ├── label_i18n_concern.rb │ │ ├── notification_attached_object.rb │ │ ├── openlab_sync.rb │ │ ├── single_sign_on_concern.rb │ │ ├── stat_concern.rb │ │ ├── stat_reservation_concern.rb │ │ ├── user_ressources_concern.rb │ │ └── user_role_concern.rb │ ├── coupon.rb │ ├── coupon_usage.rb │ ├── credit.rb │ ├── custom_asset.rb │ ├── custom_asset_file.rb │ ├── database_provider.rb │ ├── event.rb │ ├── event_file.rb │ ├── event_image.rb │ ├── event_price_category.rb │ ├── event_theme.rb │ ├── events_event_theme.rb │ ├── export.rb │ ├── footprintable.rb │ ├── group.rb │ ├── history_value.rb │ ├── i_calendar.rb │ ├── i_calendar_event.rb │ ├── import.rb │ ├── invoice.rb │ ├── invoice_item.rb │ ├── invoicing_profile.rb │ ├── licence.rb │ ├── machine.rb │ ├── machine_category.rb │ ├── machine_file.rb │ ├── machine_image.rb │ ├── machines_availability.rb │ ├── machines_product.rb │ ├── notification.rb │ ├── notification_preference.rb │ ├── notification_type.rb │ ├── o_auth2_provider.rb │ ├── offer_day.rb │ ├── open_api.rb │ ├── open_api │ │ ├── client.rb │ │ └── parameter_error.rb │ ├── open_id_connect_provider.rb │ ├── order.rb │ ├── order_activity.rb │ ├── order_item.rb │ ├── organization.rb │ ├── partner_plan.rb │ ├── payment_document.rb │ ├── payment_gateway_object.rb │ ├── payment_schedule.rb │ ├── payment_schedule_item.rb │ ├── payment_schedule_object.rb │ ├── plan.rb │ ├── plan_category.rb │ ├── plan_file.rb │ ├── plan_limitation.rb │ ├── plans_availability.rb │ ├── prepaid_pack.rb │ ├── prepaid_pack_reservation.rb │ ├── price.rb │ ├── price_category.rb │ ├── product.rb │ ├── product_category.rb │ ├── product_file.rb │ ├── product_image.rb │ ├── product_stock_movement.rb │ ├── profile.rb │ ├── profile_custom_field.rb │ ├── project.rb │ ├── project_cao.rb │ ├── project_category.rb │ ├── project_image.rb │ ├── project_step.rb │ ├── project_step_image.rb │ ├── project_user.rb │ ├── projects_component.rb │ ├── projects_machine.rb │ ├── projects_project_category.rb │ ├── projects_space.rb │ ├── projects_theme.rb │ ├── reservation.rb │ ├── reservation_context.rb │ ├── role.rb │ ├── saml_provider.rb │ ├── setting.rb │ ├── shopping_cart.rb │ ├── slot.rb │ ├── slots_reservation.rb │ ├── space.rb │ ├── space_file.rb │ ├── space_image.rb │ ├── spaces_availability.rb │ ├── statistic_custom_aggregation.rb │ ├── statistic_field.rb │ ├── statistic_graph.rb │ ├── statistic_index.rb │ ├── statistic_profile.rb │ ├── statistic_profile_prepaid_pack.rb │ ├── statistic_profile_training.rb │ ├── statistic_sub_type.rb │ ├── statistic_type.rb │ ├── statistic_type_sub_type.rb │ ├── stats │ │ ├── account.rb │ │ ├── event.rb │ │ ├── machine.rb │ │ ├── order.rb │ │ ├── project.rb │ │ ├── space.rb │ │ ├── subscription.rb │ │ ├── training.rb │ │ └── user.rb │ ├── status.rb │ ├── stylesheet.rb │ ├── subscription.rb │ ├── supporting_document_file.rb │ ├── supporting_document_refusal.rb │ ├── supporting_document_refusals_type.rb │ ├── supporting_document_type.rb │ ├── supporting_document_types_group.rb │ ├── tag.rb │ ├── theme.rb │ ├── ticket.rb │ ├── training.rb │ ├── training_image.rb │ ├── trainings_availability.rb │ ├── trainings_machine.rb │ ├── trainings_pricing.rb │ ├── user.rb │ ├── user_avatar.rb │ ├── user_profile_custom_field.rb │ ├── user_tag.rb │ ├── users_credit.rb │ ├── wallet.rb │ └── wallet_transaction.rb ├── pdfs │ ├── data │ │ ├── watermark-de.png │ │ ├── watermark-en.png │ │ ├── watermark-es.png │ │ ├── watermark-fr.png │ │ ├── watermark-it.png │ │ ├── watermark-no.png │ │ ├── watermark-pt.png │ │ └── watermark.xcf │ └── pdf │ │ ├── invoice.rb │ │ └── payment_schedule.rb ├── policies │ ├── abuse_policy.rb │ ├── accounting_export_policy.rb │ ├── accounting_period_policy.rb │ ├── admin_policy.rb │ ├── age_range_policy.rb │ ├── analytics_policy.rb │ ├── application_policy.rb │ ├── auth_provider_policy.rb │ ├── availability_policy.rb │ ├── avoir_policy.rb │ ├── cart_context.rb │ ├── cart_policy.rb │ ├── category_policy.rb │ ├── checkout_policy.rb │ ├── child_policy.rb │ ├── component_policy.rb │ ├── coupon_policy.rb │ ├── credit_policy.rb │ ├── custom_asset_policy.rb │ ├── event_policy.rb │ ├── event_theme_policy.rb │ ├── export_policy.rb │ ├── file_policy.rb │ ├── group_policy.rb │ ├── i_calendar_policy.rb │ ├── import_policy.rb │ ├── invoice_policy.rb │ ├── licence_policy.rb │ ├── local_payment_context.rb │ ├── local_payment_policy.rb │ ├── machine_category_policy.rb │ ├── machine_policy.rb │ ├── notification_preference_policy.rb │ ├── open_api │ │ └── client_policy.rb │ ├── order_policy.rb │ ├── partner_plan_policy.rb │ ├── payment_policy.rb │ ├── payment_schedule_policy.rb │ ├── payzen_policy.rb │ ├── plan_category_policy.rb │ ├── plan_policy.rb │ ├── prepaid_pack_policy.rb │ ├── price_category_policy.rb │ ├── price_policy.rb │ ├── pricing_policy.rb │ ├── product_category_policy.rb │ ├── product_policy.rb │ ├── profile_custom_field_policy.rb │ ├── project_category_policy.rb │ ├── project_policy.rb │ ├── reservation_context.rb │ ├── reservation_context_policy.rb │ ├── reservation_policy.rb │ ├── setting_context.rb │ ├── setting_policy.rb │ ├── slots_reservation_policy.rb │ ├── space_policy.rb │ ├── statistic_policy.rb │ ├── status_policy.rb │ ├── subscription_context.rb │ ├── subscription_policy.rb │ ├── supporting_document_file_policy.rb │ ├── supporting_document_refusal_policy.rb │ ├── supporting_document_type_policy.rb │ ├── tag_policy.rb │ ├── theme_policy.rb │ ├── training_policy.rb │ ├── user_policy.rb │ ├── version_policy.rb │ └── wallet_policy.rb ├── services │ ├── accounting │ │ ├── accounting_code_service.rb │ │ ├── accounting_export_service.rb │ │ ├── accounting_journal_service.rb │ │ ├── accounting_period_service.rb │ │ ├── accounting_service.rb │ │ └── vat_export_service.rb │ ├── auth_provider_service.rb │ ├── availabilities │ │ ├── availabilities_service.rb │ │ ├── create_availabilities_service.rb │ │ ├── delete_availabilities_service.rb │ │ ├── public_availabilities_service.rb │ │ └── visibility_service.rb │ ├── availabilities_export_service.rb │ ├── cart │ │ ├── add_item_service.rb │ │ ├── check_cart_service.rb │ │ ├── create_cart_item_service.rb │ │ ├── find_or_create_service.rb │ │ ├── refresh_item_service.rb │ │ ├── remove_item_service.rb │ │ ├── set_customer_service.rb │ │ ├── set_offer_service.rb │ │ ├── set_quantity_service.rb │ │ └── update_total_service.rb │ ├── cart_service.rb │ ├── checkout │ │ └── payment_service.rb │ ├── child_service.rb │ ├── coupon_service.rb │ ├── custom_aggregation_service.rb │ ├── event │ │ ├── create_event_service.rb │ │ └── update_event_service.rb │ ├── event_service.rb │ ├── excel_service.rb │ ├── export_service.rb │ ├── footprint_service.rb │ ├── generate_token_service.rb │ ├── group_service.rb │ ├── health_service.rb │ ├── i_calendar_import_service.rb │ ├── invoices │ │ ├── item_label_service.rb │ │ ├── label_service.rb │ │ ├── number_service.rb │ │ ├── payment_details_service.rb │ │ └── recipient_service.rb │ ├── invoices_service.rb │ ├── machine_service.rb │ ├── members │ │ ├── import_service.rb │ │ ├── list_service.rb │ │ └── members_service.rb │ ├── notification_center.rb │ ├── open_lab_service.rb │ ├── orders │ │ ├── order_canceled_service.rb │ │ ├── order_delivered_service.rb │ │ ├── order_ready_service.rb │ │ ├── order_refunded_service.rb │ │ ├── order_service.rb │ │ └── set_in_progress_service.rb │ ├── payment_document_service.rb │ ├── payment_gateway_service.rb │ ├── payment_schedule_service.rb │ ├── payments │ │ ├── local_service.rb │ │ ├── payment_concern.rb │ │ ├── payzen_service.rb │ │ └── stripe_service.rb │ ├── plans_service.rb │ ├── prepaid_pack_service.rb │ ├── price_service.rb │ ├── product_category_service.rb │ ├── product_service.rb │ ├── project_service.rb │ ├── project_to_markdown.rb │ ├── projects_archive.rb │ ├── recaptcha_service.rb │ ├── reservation_calendar_service.rb │ ├── reservation_confirm_payment_service.rb │ ├── reservation_limit_service.rb │ ├── secure_password.rb │ ├── setting_service.rb │ ├── slots │ │ ├── interblocking_service.rb │ │ ├── places_cache_service.rb │ │ ├── reservations_service.rb │ │ └── title_service.rb │ ├── slots_reservations_service.rb │ ├── statistics │ │ ├── builder_service.rb │ │ ├── builders │ │ │ ├── members_builder_service.rb │ │ │ ├── projects_builder_service.rb │ │ │ ├── reservations_builder_service.rb │ │ │ ├── store_orders_builder_service.rb │ │ │ └── subscriptions_builder_service.rb │ │ ├── cleaner_service.rb │ │ ├── concerns │ │ │ ├── compute_concern.rb │ │ │ ├── helpers_concern.rb │ │ │ ├── projects_concern.rb │ │ │ └── store_orders_concern.rb │ │ ├── fetcher_service.rb │ │ └── query_service.rb │ ├── statistics_export_service.rb │ ├── subscriptions │ │ ├── expire_service.rb │ │ └── extension_after_reservation.rb │ ├── supporting_document_file_service.rb │ ├── supporting_document_refusal_service.rb │ ├── supporting_document_type_service.rb │ ├── training_service.rb │ ├── trainings │ │ ├── authorization_service.rb │ │ ├── auto_cancel_service.rb │ │ └── invalidation_service.rb │ ├── user_getter_service.rb │ ├── user_service.rb │ ├── user_setter_service.rb │ ├── users_credits │ │ └── manager.rb │ ├── users_export_service.rb │ ├── vat_history_service.rb │ └── wallet_service.rb ├── themes │ └── casemate │ │ └── style.scss.erb ├── uploaders │ ├── concerns │ │ └── content_type_validation_from_file_content.rb │ ├── custom_assets_uploader.rb │ ├── event_file_uploader.rb │ ├── event_image_uploader.rb │ ├── import_uploader.rb │ ├── machine_file_uploader.rb │ ├── machine_image_uploader.rb │ ├── plan_file_uploader.rb │ ├── product_file_uploader.rb │ ├── product_image_uploader.rb │ ├── project_cao_uploader.rb │ ├── project_image_uploader.rb │ ├── space_file_uploader.rb │ ├── space_image_uploader.rb │ ├── supporting_document_file_uploader.rb │ ├── training_image_uploader.rb │ └── user_avatar_uploader.rb ├── validators │ ├── closed_period_validator.rb │ ├── coupon_discount_validator.rb │ ├── coupon_expiration_validator.rb │ ├── database_provider_validator.rb │ ├── date_range_validator.rb │ ├── duration_validator.rb │ ├── past_period_validator.rb │ ├── period_integrity_validator.rb │ ├── period_overlap_validator.rb │ ├── stripe_card_token_validator.rb │ ├── subscription_group_validator.rb │ └── user_uid_mapped_validator.rb ├── views │ ├── api │ │ ├── abuses │ │ │ ├── create.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── accounting_periods │ │ │ ├── index.json.jbuilder │ │ │ ├── last_closing_end.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── admins │ │ │ ├── _admin.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── advanced_accounting │ │ │ └── _advanced_accounting.json.jbuilder │ │ ├── age_ranges │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── auth_providers │ │ │ ├── _auth_provider.json.jbuilder │ │ │ ├── active.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── mapping_fields.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── availabilities │ │ │ ├── _slot.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── machine.json.jbuilder │ │ │ ├── public.json.jbuilder │ │ │ ├── reservations.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ ├── spaces.json.jbuilder │ │ │ └── trainings.json.jbuilder │ │ ├── categories │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── children │ │ │ ├── _child.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── components │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── coupons │ │ │ ├── _coupon.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── validate.json.jbuilder │ │ ├── credits │ │ │ ├── _credit.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── user_resource.json.jbuilder │ │ ├── custom_assets │ │ │ └── show.json.jbuilder │ │ ├── event_themes │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── events │ │ │ ├── _event.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── upcoming.json.jbuilder │ │ ├── feeds │ │ │ └── twitter_timelines.json.jbuilder │ │ ├── groups │ │ │ ├── _group.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── i_calendar │ │ │ ├── _i_calendar.json.jbuilder │ │ │ ├── events.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── ical │ │ │ └── externals.json.jbuilder │ │ ├── imports │ │ │ └── show.json.jbuilder │ │ ├── invoices │ │ │ ├── _invoice.json.jbuilder │ │ │ ├── avoir.json.jbuilder │ │ │ ├── first.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── list.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── licences │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── machine_categories │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── machines │ │ │ ├── _machine.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── members │ │ │ ├── _member.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── list.json.jbuilder │ │ │ ├── mapping.json.jbuilder │ │ │ ├── search.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── notification_preferences │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── notification_types │ │ │ └── index.json.jbuilder │ │ ├── notifications │ │ │ ├── _notify_admin_abuse_reported.json.jbuilder │ │ │ ├── _notify_admin_archive_complete.json.jbuilder │ │ │ ├── _notify_admin_child_created.json.jbuilder │ │ │ ├── _notify_admin_close_period_reminder.json.jbuilder │ │ │ ├── _notify_admin_export_complete.json.jbuilder │ │ │ ├── _notify_admin_free_disk_space.json.jbuilder │ │ │ ├── _notify_admin_import_complete.json.jbuilder │ │ │ ├── _notify_admin_invoicing_changed.json.jbuilder │ │ │ ├── _notify_admin_low_stock_threshold.json.jbuilder │ │ │ ├── _notify_admin_member_create_reservation.json.jbuilder │ │ │ ├── _notify_admin_member_pre_booked_reservation.json.jbuilder │ │ │ ├── _notify_admin_objects_stripe_sync.json.jbuilder │ │ │ ├── _notify_admin_order_is_paid.json.jbuilder │ │ │ ├── _notify_admin_payment_schedule_check_deadline.json.jbuilder │ │ │ ├── _notify_admin_payment_schedule_error.json.jbuilder │ │ │ ├── _notify_admin_payment_schedule_failed.json.jbuilder │ │ │ ├── _notify_admin_payment_schedule_gateway_canceled.json.jbuilder │ │ │ ├── _notify_admin_payment_schedule_transfer_deadline.json.jbuilder │ │ │ ├── _notify_admin_profile_complete.json.jbuilder │ │ │ ├── _notify_admin_refund_created.json.jbuilder │ │ │ ├── _notify_admin_reservation_invalidated.json.jbuilder │ │ │ ├── _notify_admin_reservation_validated.json.jbuilder │ │ │ ├── _notify_admin_slot_is_canceled.json.jbuilder │ │ │ ├── _notify_admin_slot_is_modified.json.jbuilder │ │ │ ├── _notify_admin_subscribed_plan.json.jbuilder │ │ │ ├── _notify_admin_subscription_canceled.json.jbuilder │ │ │ ├── _notify_admin_subscription_extended.json.jbuilder │ │ │ ├── _notify_admin_subscription_is_expired.json.jbuilder │ │ │ ├── _notify_admin_subscription_will_expire_in_7_days.json.jbuilder │ │ │ ├── _notify_admin_training_auto_cancelled.json.jbuilder │ │ │ ├── _notify_admin_user_child_supporting_document_files_created.json.jbuilder │ │ │ ├── _notify_admin_user_child_supporting_document_files_updated.json.jbuilder │ │ │ ├── _notify_admin_user_child_supporting_document_refusal.json.jbuilder │ │ │ ├── _notify_admin_user_group_changed.json.jbuilder │ │ │ ├── _notify_admin_user_merged.json.jbuilder │ │ │ ├── _notify_admin_user_supporting_document_files_created.json.jbuilder │ │ │ ├── _notify_admin_user_supporting_document_files_updated.json.jbuilder │ │ │ ├── _notify_admin_user_supporting_document_refusal.json.jbuilder │ │ │ ├── _notify_admin_user_wallet_is_credited.json.jbuilder │ │ │ ├── _notify_admin_when_project_published.json.jbuilder │ │ │ ├── _notify_admin_when_user_is_created.json.jbuilder │ │ │ ├── _notify_admin_when_user_is_imported.json.jbuilder │ │ │ ├── _notify_admins_role_update.json.jbuilder │ │ │ ├── _notify_member_about_coupon.json.jbuilder │ │ │ ├── _notify_member_create_reservation.json.jbuilder │ │ │ ├── _notify_member_payment_schedule_error.json.jbuilder │ │ │ ├── _notify_member_payment_schedule_failed.json.jbuilder │ │ │ ├── _notify_member_payment_schedule_gateway_canceled.json.jbuilder │ │ │ ├── _notify_member_pre_booked_reservation.json.jbuilder │ │ │ ├── _notify_member_reservation_invalidated.json.jbuilder │ │ │ ├── _notify_member_reservation_limit_reached.json.jbuilder │ │ │ ├── _notify_member_reservation_reminder.json.jbuilder │ │ │ ├── _notify_member_reservation_validated.json.jbuilder │ │ │ ├── _notify_member_slot_is_canceled.json.jbuilder │ │ │ ├── _notify_member_slot_is_modified.json.jbuilder │ │ │ ├── _notify_member_subscribed_plan.json.jbuilder │ │ │ ├── _notify_member_subscribed_plan_is_changed.json.jbuilder │ │ │ ├── _notify_member_subscription_canceled.json.jbuilder │ │ │ ├── _notify_member_subscription_extended.json.jbuilder │ │ │ ├── _notify_member_subscription_is_expired.json.jbuilder │ │ │ ├── _notify_member_subscription_will_expire_in_7_days.json.jbuilder │ │ │ ├── _notify_member_training_authorization_expired.json.jbuilder │ │ │ ├── _notify_member_training_auto_cancelled.json.jbuilder │ │ │ ├── _notify_member_training_invalidated.json.jbuilder │ │ │ ├── _notify_partner_subscribed_plan.json.jbuilder │ │ │ ├── _notify_privacy_policy_changed.json.jbuilder │ │ │ ├── _notify_project_author_when_collaborator_valid.json.jbuilder │ │ │ ├── _notify_project_collaborator_to_valid.json.jbuilder │ │ │ ├── _notify_user_auth_migration.json.jbuilder │ │ │ ├── _notify_user_child_is_invalidated.json.jbuilder │ │ │ ├── _notify_user_child_is_validated.json.jbuilder │ │ │ ├── _notify_user_child_supporting_document_refusal.json.jbuilder │ │ │ ├── _notify_user_is_invalidated.json.jbuilder │ │ │ ├── _notify_user_is_validated.json.jbuilder │ │ │ ├── _notify_user_order_is_canceled.json.jbuilder │ │ │ ├── _notify_user_order_is_ready.json.jbuilder │ │ │ ├── _notify_user_order_is_refunded.json.jbuilder │ │ │ ├── _notify_user_profile_complete.json.jbuilder │ │ │ ├── _notify_user_role_update.json.jbuilder │ │ │ ├── _notify_user_supporting_document_refusal.json.jbuilder │ │ │ ├── _notify_user_supporting_document_reminder.json.jbuilder │ │ │ ├── _notify_user_training_valid.json.jbuilder │ │ │ ├── _notify_user_user_group_changed.json.jbuilder │ │ │ ├── _notify_user_wallet_is_credited.json.jbuilder │ │ │ ├── _notify_user_when_avoir_ready.json.jbuilder │ │ │ ├── _notify_user_when_child_age_will_be_18.json.jbuilder │ │ │ ├── _notify_user_when_invoice_ready.json.jbuilder │ │ │ ├── _notify_user_when_payment_schedule_ready.json.jbuilder │ │ │ ├── _undefined_notification.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── open_api_clients │ │ │ ├── _client.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── reset_token.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── orders │ │ │ ├── _cart_item_reservation.json.jbuilder │ │ │ ├── _order.json.jbuilder │ │ │ ├── _product.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── item.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── payment_schedules │ │ │ ├── _payment_schedule.json.jbuilder │ │ │ ├── _payment_schedule_item.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── list.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── show_item.json.jbuilder │ │ ├── payzen │ │ │ ├── check_hash.json.jbuilder │ │ │ ├── create_payment.json.jbuilder │ │ │ ├── create_token.json.jbuilder │ │ │ ├── sdk_test.json.jbuilder │ │ │ └── update_token.json.jbuilder │ │ ├── plan_categories │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── plans │ │ │ ├── _plan.json.jbuilder │ │ │ ├── durations.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── prepaid_packs │ │ │ ├── _pack.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── price_categories │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── prices │ │ │ ├── _price.json.jbuilder │ │ │ ├── compute.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── pricing │ │ │ └── index.json.jbuilder │ │ ├── product_categories │ │ │ ├── _product_category.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── products │ │ │ ├── _product.json.jbuilder │ │ │ ├── _stock_movement.json.jbuilder │ │ │ ├── clone.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ ├── stock_movements.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── profile_custom_fields │ │ │ ├── _profile_custom_field.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── project_categories │ │ │ └── index.json.jbuilder │ │ ├── projects │ │ │ ├── _indexed.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── last_published.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── reservation_contexts │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── reservations │ │ │ ├── _reservation.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── settings │ │ │ ├── _setting.json.jbuilder │ │ │ ├── bulk_update.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ ├── test_present.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── shared │ │ │ └── _plan.json.jbuilder │ │ ├── slots_reservations │ │ │ ├── cancel.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── spaces │ │ │ ├── _space.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── statistics │ │ │ └── index.json.jbuilder │ │ ├── statuses │ │ │ └── index.json.jbuilder │ │ ├── stylesheets │ │ │ └── show.css.erb │ │ ├── subscriptions │ │ │ ├── _subscription.json.jbuilder │ │ │ ├── payment_details.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── supporting_document_files │ │ │ ├── _supporting_document_file.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── supporting_document_refusals │ │ │ ├── _supporting_document_refusal.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── supporting_document_types │ │ │ ├── _supporting_document_type.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── tags │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── themes │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── trainings │ │ │ ├── _training.json.jbuilder │ │ │ ├── availabilities.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── trainings_pricings │ │ │ ├── _trainings_pricing.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── update.json.jbuilder │ │ ├── user_packs │ │ │ └── index.json.jbuilder │ │ ├── users │ │ │ ├── create.json.jbuilder │ │ │ └── index.json.jbuilder │ │ └── wallet │ │ │ ├── show.json.jbuilder │ │ │ └── transactions.json.jbuilder │ ├── application │ │ ├── index.html.erb │ │ └── sso_redirect.html.erb │ ├── archive │ │ ├── _accounting.json.jbuilder │ │ └── _vat.json.jbuilder │ ├── auth_provider │ │ └── provider.json.jbuilder │ ├── devise │ │ └── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ └── reset_password_instructions.html.erb │ ├── exports │ │ ├── availabilities_index.xlsx.axlsx │ │ ├── statistics_current.xlsx.axlsx │ │ ├── statistics_global.xlsx.axlsx │ │ ├── users_members.xlsx.axlsx │ │ ├── users_reservations.xlsx.axlsx │ │ └── users_subscriptions.xlsx.axlsx │ ├── layouts │ │ └── notifications_mailer.html.erb │ ├── notifications_mailer │ │ ├── notify_admin_abuse_reported.html.erb │ │ ├── notify_admin_archive_complete.html.erb │ │ ├── notify_admin_child_created.html.erb │ │ ├── notify_admin_close_period_reminder.html.erb │ │ ├── notify_admin_export_complete.html.erb │ │ ├── notify_admin_free_disk_space.html.erb │ │ ├── notify_admin_import_complete.html.erb │ │ ├── notify_admin_low_stock_threshold.html.erb │ │ ├── notify_admin_member_create_reservation.html.erb │ │ ├── notify_admin_member_pre_booked_reservation.html.erb │ │ ├── notify_admin_objects_stripe_sync.html.erb │ │ ├── notify_admin_order_is_paid.html.erb │ │ ├── notify_admin_payment_schedule_check_deadline.html.erb │ │ ├── notify_admin_payment_schedule_error.html.erb │ │ ├── notify_admin_payment_schedule_failed.html.erb │ │ ├── notify_admin_payment_schedule_gateway_canceled.html.erb │ │ ├── notify_admin_payment_schedule_transfer_deadline.html.erb │ │ ├── notify_admin_profile_complete.html.erb │ │ ├── notify_admin_refund_created.html.erb │ │ ├── notify_admin_reservation_invalidated.html.erb │ │ ├── notify_admin_reservation_validated.html.erb │ │ ├── notify_admin_slot_is_canceled.html.erb │ │ ├── notify_admin_slot_is_modified.html.erb │ │ ├── notify_admin_subscribed_plan.html.erb │ │ ├── notify_admin_subscription_canceled.html.erb │ │ ├── notify_admin_subscription_extended.html.erb │ │ ├── notify_admin_subscription_is_expired.html.erb │ │ ├── notify_admin_subscription_will_expire_in_7_days.html.erb │ │ ├── notify_admin_training_auto_cancelled.html.erb │ │ ├── notify_admin_user_child_supporting_document_files_created.html.erb │ │ ├── notify_admin_user_child_supporting_document_files_updated.html.erb │ │ ├── notify_admin_user_child_supporting_document_refusal.html.erb │ │ ├── notify_admin_user_group_changed.html.erb │ │ ├── notify_admin_user_merged.html.erb │ │ ├── notify_admin_user_supporting_document_files_created.html.erb │ │ ├── notify_admin_user_supporting_document_files_updated.html.erb │ │ ├── notify_admin_user_supporting_document_refusal.html.erb │ │ ├── notify_admin_user_wallet_is_credited.html.erb │ │ ├── notify_admin_when_project_published.html.erb │ │ ├── notify_admin_when_user_is_created.html.erb │ │ ├── notify_admin_when_user_is_imported.html.erb │ │ ├── notify_admins_role_update.html.erb │ │ ├── notify_member_about_coupon.html.erb │ │ ├── notify_member_avoir_ready.html.erb │ │ ├── notify_member_create_reservation.html.erb │ │ ├── notify_member_invoice_ready.html.erb │ │ ├── notify_member_payment_schedule_error.html.erb │ │ ├── notify_member_payment_schedule_failed.html.erb │ │ ├── notify_member_payment_schedule_gateway_canceled.html.erb │ │ ├── notify_member_payment_schedule_ready.html.erb │ │ ├── notify_member_pre_booked_reservation.html.erb │ │ ├── notify_member_reservation_invalidated.html.erb │ │ ├── notify_member_reservation_limit_reached.html.erb │ │ ├── notify_member_reservation_reminder.html.erb │ │ ├── notify_member_reservation_validated.html.erb │ │ ├── notify_member_slot_is_canceled.html.erb │ │ ├── notify_member_slot_is_modified.html.erb │ │ ├── notify_member_subscribed_plan.html.erb │ │ ├── notify_member_subscribed_plan_is_changed.html.erb │ │ ├── notify_member_subscription_canceled.html.erb │ │ ├── notify_member_subscription_extended.html.erb │ │ ├── notify_member_subscription_is_expired.html.erb │ │ ├── notify_member_subscription_will_expire_in_7_days.html.erb │ │ ├── notify_member_training_authorization_expired.html.erb │ │ ├── notify_member_training_auto_cancelled.html.erb │ │ ├── notify_member_training_invalidated.html.erb │ │ ├── notify_partner_subscribed_plan.html.erb │ │ ├── notify_privacy_policy_changed.html.erb │ │ ├── notify_project_author_when_collaborator_valid.html.erb │ │ ├── notify_project_collaborator_to_valid.html.erb │ │ ├── notify_user_auth_migration.html.erb │ │ ├── notify_user_child_is_invalidated.html.erb │ │ ├── notify_user_child_is_validated.html.erb │ │ ├── notify_user_child_supporting_document_refusal.html.erb │ │ ├── notify_user_is_invalidated.html.erb │ │ ├── notify_user_is_validated.html.erb │ │ ├── notify_user_order_is_canceled.erb │ │ ├── notify_user_order_is_ready.erb │ │ ├── notify_user_order_is_refunded.erb │ │ ├── notify_user_profile_complete.html.erb │ │ ├── notify_user_role_update.html.erb │ │ ├── notify_user_supporting_document_refusal.html.erb │ │ ├── notify_user_supporting_document_reminder.html.erb │ │ ├── notify_user_training_valid.html.erb │ │ ├── notify_user_user_group_changed.html.erb │ │ ├── notify_user_wallet_is_credited.html.erb │ │ ├── notify_user_when_child_age_will_be_18.html.erb │ │ └── shared │ │ │ └── _hello.html.erb │ ├── open_api │ │ └── v1 │ │ │ ├── accounting │ │ │ └── index.json.jbuilder │ │ │ ├── availabilities │ │ │ └── index.json.jbuilder │ │ │ ├── bookable_machines │ │ │ └── index.json.jbuilder │ │ │ ├── events │ │ │ ├── _event.json.jbuilder │ │ │ └── index.json.jbuilder │ │ │ ├── invoices │ │ │ └── index.json.jbuilder │ │ │ ├── machines │ │ │ ├── _machine.json.jbuilder │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ ├── show.json.jbuilder │ │ │ └── update.json.jbuilder │ │ │ ├── plan_categories │ │ │ └── index.json.jbuilder │ │ │ ├── plans │ │ │ ├── _plan.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ │ ├── prices │ │ │ └── index.json.jbuilder │ │ │ ├── reservations │ │ │ └── index.json.jbuilder │ │ │ ├── spaces │ │ │ ├── _space.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ │ ├── subscriptions │ │ │ └── index.json.jbuilder │ │ │ ├── trainings │ │ │ ├── _training.json.jbuilder │ │ │ └── index.json.jbuilder │ │ │ ├── user_trainings │ │ │ └── index.json.jbuilder │ │ │ └── users │ │ │ ├── _user.json.jbuilder │ │ │ └── index.json.jbuilder │ ├── rss │ │ ├── events │ │ │ └── index.xml.builder │ │ └── projects │ │ │ └── index.xml.builder │ ├── social_bot │ │ ├── event.html.erb │ │ ├── project.html.erb │ │ └── training.html.erb │ └── users_mailer │ │ └── notify_user_account_created.html.erb └── workers │ ├── accounting_export_worker.rb │ ├── accounting_worker.rb │ ├── archive_worker.rb │ ├── availabilities_export_worker.rb │ ├── availability_indexer_worker.rb │ ├── child_age_worker.rb │ ├── close_period_reminder_worker.rb │ ├── free_disk_space_worker.rb │ ├── i_calendar_import_worker.rb │ ├── invoice_worker.rb │ ├── members_import_worker.rb │ ├── notify_privacy_update_worker.rb │ ├── openlab_worker.rb │ ├── payment_schedule_item_worker.rb │ ├── payment_schedule_worker.rb │ ├── period_statistics_worker.rb │ ├── reservation_reminder_worker.rb │ ├── statistic_worker.rb │ ├── statistics_export_worker.rb │ ├── stripe_worker.rb │ ├── subscription_expire_worker.rb │ ├── supporting_documents_reminder_worker.rb │ ├── sync_objects_on_stripe_worker.rb │ ├── training_authorization_worker.rb │ ├── training_auto_cancel_worker.rb │ ├── users_export_worker.rb │ └── version_check_worker.rb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update ├── webpack ├── webpack-dev-server ├── webpacker ├── webpacker-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml.default ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── active_record_base.rb │ ├── activerecord.rb │ ├── ancestry.rb │ ├── apipie.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── currency.rb │ ├── default_url_options.rb │ ├── devise.rb │ ├── devise_mailer.rb │ ├── elasticsearch.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── is_number.rb │ ├── locale.rb │ ├── mail.rb │ ├── mime_types.rb │ ├── notification_types.rb │ ├── openlab_ruby.rb │ ├── permissions_policy.rb │ ├── postgresql_database_tasks.rb │ ├── rolify.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── silencer.rb │ ├── stripe.rb │ └── wrap_parameters.rb ├── locales │ ├── app.admin.de.yml │ ├── app.admin.en.yml │ ├── app.admin.es-MX.yml │ ├── app.admin.es.yml │ ├── app.admin.fr.yml │ ├── app.admin.it.yml │ ├── app.admin.no.yml │ ├── app.admin.pt.yml │ ├── app.admin.sv.yml │ ├── app.admin.zh.yml │ ├── app.admin.zu.yml │ ├── app.logged.de.yml │ ├── app.logged.en.yml │ ├── app.logged.es-MX.yml │ ├── app.logged.es.yml │ ├── app.logged.fr.yml │ ├── app.logged.it.yml │ ├── app.logged.no.yml │ ├── app.logged.pt.yml │ ├── app.logged.sv.yml │ ├── app.logged.zh.yml │ ├── app.logged.zu.yml │ ├── app.public.de.yml │ ├── app.public.en.yml │ ├── app.public.es-MX.yml │ ├── app.public.es.yml │ ├── app.public.fr.yml │ ├── app.public.it.yml │ ├── app.public.no.yml │ ├── app.public.pt.yml │ ├── app.public.sv.yml │ ├── app.public.zh.yml │ ├── app.public.zu.yml │ ├── app.shared.de.yml │ ├── app.shared.en.yml │ ├── app.shared.es-MX.yml │ ├── app.shared.es.yml │ ├── app.shared.fr.yml │ ├── app.shared.it.yml │ ├── app.shared.no.yml │ ├── app.shared.pt.yml │ ├── app.shared.sv.yml │ ├── app.shared.zh.yml │ ├── app.shared.zu.yml │ ├── base.de.yml │ ├── base.en.yml │ ├── base.es-MX.yml │ ├── base.es.yml │ ├── base.fr.yml │ ├── base.it.yml │ ├── base.no.yml │ ├── base.pt.yml │ ├── base.sv.yml │ ├── base.zh.yml │ ├── base.zu.yml │ ├── de.yml │ ├── devise.de.yml │ ├── devise.en.yml │ ├── devise.es-MX.yml │ ├── devise.es.yml │ ├── devise.fr.yml │ ├── devise.it.yml │ ├── devise.no.yml │ ├── devise.pt.yml │ ├── devise.sv.yml │ ├── devise.zh.yml │ ├── devise.zu.yml │ ├── en.yml │ ├── es-MX.yml │ ├── es.yml │ ├── fr.yml │ ├── it.yml │ ├── mails.de.yml │ ├── mails.en.yml │ ├── mails.es-MX.yml │ ├── mails.es.yml │ ├── mails.fr.yml │ ├── mails.it.yml │ ├── mails.no.yml │ ├── mails.pt.yml │ ├── mails.sv.yml │ ├── mails.zh.yml │ ├── mails.zu.yml │ ├── no.yml │ ├── pt.yml │ ├── rails.de-AT.yml │ ├── rails.de-CH.yml │ ├── rails.de-DE.yml │ ├── rails.de.yml │ ├── rails.en-AU.yml │ ├── rails.en-CA.yml │ ├── rails.en-GB.yml │ ├── rails.en-IE.yml │ ├── rails.en-IN.yml │ ├── rails.en-NZ.yml │ ├── rails.en-US.yml │ ├── rails.en-ZA.yml │ ├── rails.en.yml │ ├── rails.es-419.yml │ ├── rails.es-AR.yml │ ├── rails.es-CL.yml │ ├── rails.es-CO.yml │ ├── rails.es-CR.yml │ ├── rails.es-DO.yml │ ├── rails.es-EC.yml │ ├── rails.es-ES.yml │ ├── rails.es-MX.yml │ ├── rails.es-PA.yml │ ├── rails.es-PE.yml │ ├── rails.es-US.yml │ ├── rails.es-VE.yml │ ├── rails.es.yml │ ├── rails.fr-CA.yml │ ├── rails.fr-CH.yml │ ├── rails.fr-CM.yml │ ├── rails.fr-FR.yml │ ├── rails.fr.yml │ ├── rails.it-CH.yml │ ├── rails.it.yml │ ├── rails.no.yml │ ├── rails.pt-BR.yml │ ├── rails.pt.yml │ ├── rails.zh.yml │ ├── rails.zu.yml │ ├── sv.yml │ ├── zh.yml │ └── zu.yml ├── puma.rb ├── routes.rb ├── schedule.yml ├── secrets.yml ├── sidekiq.yml ├── spring.rb ├── storage.yml ├── webpack │ ├── modules │ │ ├── hmr.js │ │ ├── html.js │ │ ├── html_erb.js │ │ ├── js_erb.js │ │ ├── sass.js │ │ ├── sass_erb.js │ │ ├── svg.js │ │ └── ui-tour.js │ └── webpack.config.js └── webpacker.yml ├── crowdin.yml ├── db ├── migrate │ ├── 20140409083104_devise_create_users.rb │ ├── 20140409083610_rolify_create_roles.rb │ ├── 20140409153915_create_profiles.rb │ ├── 20140410101026_create_projects.rb │ ├── 20140410140516_create_machines.rb │ ├── 20140410162151_create_assets.rb │ ├── 20140411152729_create_projects_machines.rb │ ├── 20140414141134_add_is_allow_contact_to_user.rb │ ├── 20140415104151_create_project_user.rb │ ├── 20140415123625_add_author_id_to_project.rb │ ├── 20140416130838_create_project_steps.rb │ ├── 20140422085949_create_availabilities.rb │ ├── 20140422090412_create_machines_availabilities.rb │ ├── 20140513152025_add_title_to_project_step.rb │ ├── 20140516083543_create_reservations.rb │ ├── 20140516083909_create_slots.rb │ ├── 20140516093335_add_reservable_to_reservation.rb │ ├── 20140522115617_create_addresses.rb │ ├── 20140522175539_create_components.rb │ ├── 20140522175714_create_themes.rb │ ├── 20140522180032_create_licences.rb │ ├── 20140522180930_create_projects_components.rb │ ├── 20140522181011_create_projects_themes.rb │ ├── 20140522181148_add_tags_to_project.rb │ ├── 20140523083230_add_licence_id_to_project.rb │ ├── 20140526144327_add_state_to_project.rb │ ├── 20140527092045_create_notifications.rb │ ├── 20140528134944_add_is_valid_to_project_user.rb │ ├── 20140528140257_add_valid_token_to_project_user.rb │ ├── 20140529145140_create_user_trainings.rb │ ├── 20140603084413_create_groups.rb │ ├── 20140603085817_create_plans.rb │ ├── 20140603164215_create_trainings_pricings.rb │ ├── 20140604094514_add_group_to_user.rb │ ├── 20140604113611_create_trainings.rb │ ├── 20140604113919_create_trainings_machine.rb │ ├── 20140604132045_create_trainings_availabilities.rb │ ├── 20140605125131_add_availability_id_to_reservation.rb │ ├── 20140605142133_change_machine_id_to_training_id_from_user_training.rb │ ├── 20140605151442_change_machine_to_training_from_trainings_pricing.rb │ ├── 20140609092700_remove_availability_id_form_reservations.rb │ ├── 20140609092827_add_availability_to_slot.rb │ ├── 20140610153123_add_stp_customer_id_to_users.rb │ ├── 20140610170446_create_subscriptions.rb │ ├── 20140613150651_add_stp_invoice_id_to_reservation.rb │ ├── 20140620131525_add_start_at_to_subscription.rb │ ├── 20140622121724_create_friendly_id_slugs.rb │ ├── 20140622122944_add_slug_to_projects.rb │ ├── 20140622145648_add_strip_id_to_groups.rb │ ├── 20140623023557_add_slug_to_machines.rb │ ├── 20140624123359_create_credits.rb │ ├── 20140624123814_create_users_credits.rb │ ├── 20140624124338_add_training_credit_nb_to_plan.rb │ ├── 20140703100457_change_start_at_to_expired_at_from_subscription.rb │ ├── 20140703231208_add_username_to_user.rb │ ├── 20140703233420_add_index_username_to_user.rb │ ├── 20140703233942_remove_username_from_profiles.rb │ ├── 20140703235739_add_slug_to_users.rb │ ├── 20140710144142_create_events.rb │ ├── 20140710144427_create_categories.rb │ ├── 20140710144610_create_events_categories.rb │ ├── 20140711084809_change_event.rb │ ├── 20140715095503_add_nb_reserve_places_and_nb_reserve_reduced_places_to_reservation.rb │ ├── 20140717143735_add_recurrence_id_to_event.rb │ ├── 20140722162046_create_invoices.rb │ ├── 20140722162309_create_invoice_items.rb │ ├── 20140723075942_add_user_id_to_invoice.rb │ ├── 20140723171547_remove_description_from_invoice_items.rb │ ├── 20140723172610_add_invoiced_to_invoice_items.rb │ ├── 20140724125605_remove_invoiced_from_invoice_items.rb │ ├── 20140724131808_add_description_to_invoice_items.rb │ ├── 20140724132655_add_subscription_id_to_invoice_items.rb │ ├── 20140728110430_add_reference_to_invoice.rb │ ├── 20141002111736_add_canceled_at_to_subscription.rb │ ├── 20141110131407_add_to_cancel_to_subscription.rb │ ├── 20141215142044_remove_to_cancel_from_subscription.rb │ ├── 20141215153643_create_offer_days.rb │ ├── 20141217141648_add_nb_total_places_to_trainings.rb │ ├── 20141217172843_add_nb_total_places_to_availability.rb │ ├── 20150107103903_add_slug_to_trainings.rb │ ├── 20150108082541_add_published_at_to_projects.rb │ ├── 20150112160349_create_statistic_indices.rb │ ├── 20150112160405_create_statistic_types.rb │ ├── 20150112160425_create_statistic_sub_types.rb │ ├── 20150113112757_add_simple_to_statistic_sub_type.rb │ ├── 20150114111132_remove_simple_from_statistic_sub_type.rb │ ├── 20150114111243_add_simple_to_statistic_type.rb │ ├── 20150114141926_create_statistic_fields.rb │ ├── 20150114142032_remove_additional_field_from_statistic_index.rb │ ├── 20150115143750_add_type_to_statistic_field.rb │ ├── 20150119082931_rename_statistic_field_type_to_data_type.rb │ ├── 20150119092557_remove_statistic_type_id_from_statistic_sub_type.rb │ ├── 20150119093811_create_statistic_type_sub_types.rb │ ├── 20150119160758_add_table_to_statistic_index.rb │ ├── 20150119161004_create_statistic_graphs.rb │ ├── 20150127101521_add_ca_to_statistic_index.rb │ ├── 20150127155141_add_avoir_mode_to_invoice.rb │ ├── 20150127161235_add_avoir_date_to_invoice.rb │ ├── 20150127172510_add_invoice_id_to_invoice.rb │ ├── 20150128132219_add_subscription_to_expire_to_invoices.rb │ ├── 20150218154032_add_receiver_type_and_is_send_to_notification.rb │ ├── 20150428075148_add_is_active_attribute_to_users.rb │ ├── 20150428091057_create_settings.rb │ ├── 20150506090921_add_description_to_trainings.rb │ ├── 20150507075506_add_ex_start_at_to_slots.rb │ ├── 20150507075620_add_ex_end_at_to_slots.rb │ ├── 20150512123546_add_attributes_to_plan.rb │ ├── 20150520132030_create_prices.rb │ ├── 20150526130729_add_base_name_to_plans.rb │ ├── 20150527153312_add_canceled_at_to_slot.rb │ ├── 20150529113555_add_default_for_training_nb_credit_to_plans.rb │ ├── 20150601125944_change_stripe_id_to_short_name_from_groups.rb │ ├── 20150603104502_change_short_name_to_slug_from_group.rb │ ├── 20150603104658_add_unique_index_to_slug_from_group.rb │ ├── 20150604081757_add_ui_weight_to_plans.rb │ ├── 20150604131525_add_meta_data_to_notifications.rb │ ├── 20150608142234_add_invoicing_disabled_to_users.rb │ ├── 20150609094336_add_interval_count_to_plans.rb │ ├── 20150615135539_migrate_plan_stats.rb │ ├── 20150617085623_create_custom_assets.rb │ ├── 20150701090642_create_stylesheets.rb │ ├── 20150702150754_create_tags.rb │ ├── 20150702151009_create_user_tags.rb │ ├── 20150706102547_create_availability_tags.rb │ ├── 20150707135343_add_offered_to_slots.rb │ ├── 20150713090542_change_amount_type_in_invoice_items.rb │ ├── 20150713151115_add_invoice_item_id_to_invoice_item.rb │ ├── 20150715135751_add_description_to_invoices.rb │ ├── 20150915144448_create_auth_providers.rb │ ├── 20150915144939_create_o_auth2_providers.rb │ ├── 20150915152943_create_o_auth2_mappings.rb │ ├── 20150916091131_change_auth_provider_to_polymorphic.rb │ ├── 20150916093159_create_database_providers.rb │ ├── 20150921135557_add_sso_id_to_user.rb │ ├── 20150921135817_add_local_model_to_o_auth2_mapping.rb │ ├── 20150922095921_migrate_endpoints_to_urls_from_o_auth2_providers.rb │ ├── 20150922100528_remove_resource_url_from_o_auth2_mappings.rb │ ├── 20150924093917_migrate_url_to_endpoints_from_o_auth2_providers.rb │ ├── 20150924094138_add_resource_endpoint_to_o_auth2_mappings.rb │ ├── 20150924094427_rename_resource_endpoint_from_o_auth2_mappings.rb │ ├── 20150924141714_add_omniauth_to_users.rb │ ├── 20151005133841_add_profile_url_to_o_auth2_providers.rb │ ├── 20151008152219_add_auth_token_to_users.rb │ ├── 20151105125623_create_abuses.rb │ ├── 20151210113548_add_merged_at_to_users.rb │ ├── 20160119131623_add_destroying_to_availability.rb │ ├── 20160504085703_create_open_api_clients.rb │ ├── 20160504085905_create_open_api_calls_count_tracings.rb │ ├── 20160516090121_add_social_fields_to_profile.rb │ ├── 20160516124056_add_website_to_profile.rb │ ├── 20160526095550_add_socials_to_profile.rb │ ├── 20160526102307_add_job_to_profile.rb │ ├── 20160602075531_add_step_nb_to_project_step.rb │ ├── 20160613093842_create_unaccent_function.rb │ ├── 20160628092931_rename_courses_workshops_to_events.rb │ ├── 20160628124538_create_event_themes.rb │ ├── 20160628131408_create_events_event_themes.rb │ ├── 20160628134211_create_age_ranges.rb │ ├── 20160628134303_add_age_range_id_to_event.rb │ ├── 20160629091649_rename_range_to_name_from_age_range.rb │ ├── 20160630083438_add_slug_to_categories.rb │ ├── 20160630083556_add_slug_to_age_range.rb │ ├── 20160630083759_add_slug_to_event_theme.rb │ ├── 20160630100137_add_event_theme_and_age_range_to_statistic_field.rb │ ├── 20160630140204_add_slugs_to_existing_categories.rb │ ├── 20160704095606_create_wallets.rb │ ├── 20160704165139_create_wallet_transactions.rb │ ├── 20160714095018_add_public_page_to_training.rb │ ├── 20160718165434_add_wallet_amount_to_invoice.rb │ ├── 20160720124355_add_wallet_transaction_to_invoice.rb │ ├── 20160725131756_add_category_id_to_event.rb │ ├── 20160725131950_singleize_event_categories.rb │ ├── 20160725135112_drop_events_categories.rb │ ├── 20160726081931_create_exports.rb │ ├── 20160726111509_add_user_to_export.rb │ ├── 20160726131152_rename_type_to_stat_type_from_export.rb │ ├── 20160726144257_add_key_to_export.rb │ ├── 20160728095026_add_is_allow_newsletter_to_users.rb │ ├── 20160801145502_create_organizations.rb │ ├── 20160801153454_add_profile_to_organization.rb │ ├── 20160803085201_create_coupons.rb │ ├── 20160803104701_add_coupon_to_invoice.rb │ ├── 20160804073558_remove_usages_from_coupons.rb │ ├── 20160808113850_remove_stp_coupon_id_from_coupons.rb │ ├── 20160808113930_add_validity_per_user_to_coupon.rb │ ├── 20160824080717_create_price_categories.rb │ ├── 20160824084111_create_event_price_categories.rb │ ├── 20160825141326_create_tickets.rb │ ├── 20160830154719_migrate_event_reduced_amount_to_price_category.rb │ ├── 20160831084443_remove_reduced_amount_from_event.rb │ ├── 20160831084519_remove_nb_reserve_reduced_places_from_reservation.rb │ ├── 20160905141858_create_statistic_custom_aggregations.rb │ ├── 20160905142700_add_field_to_statistic_custom_aggregation.rb │ ├── 20160906094739_remove_path_from_statistic_custom_aggregations.rb │ ├── 20160906094847_add_es_index_es_type_to_statistic_custom_aggregations.rb │ ├── 20160915105234_add_transformation_to_o_auth2_mapping.rb │ ├── 20161123104604_add_amount_off_to_coupons.rb │ ├── 20170109085345_add_slug_to_plan.rb │ ├── 20170213100744_create_spaces.rb │ ├── 20170213101541_create_projects_spaces.rb │ ├── 20170213103438_create_spaces_availabilities.rb │ ├── 20170213142543_add_characteristics_to_space.rb │ ├── 20170227104736_create_slots_reservations.rb │ ├── 20170227104934_migrate_slots_reservations.rb │ ├── 20170227113718_remove_reservation_id_from_slots.rb │ ├── 20170227114634_add_destroying_to_slot.rb │ ├── 20170906100906_add_lock_to_availability.rb │ ├── 20171004135605_add_disabled_to_plan.rb │ ├── 20171005141522_add_disabled_to_group.rb │ ├── 20171010143708_add_disabled_to_training.rb │ ├── 20171011100640_add_disabled_to_machine.rb │ ├── 20171011125217_add_disabled_to_space.rb │ ├── 20181210105917_rename_expired_at_to_expiration_date_from_subscription.rb │ ├── 20181217103256_create_history_values.rb │ ├── 20181217103441_migrate_settings_value_to_history_values.rb │ ├── 20181217110454_remove_value_from_settings.rb │ ├── 20190107103632_create_accounting_periods.rb │ ├── 20190107111749_protect_accounting_periods.rb │ ├── 20190110150532_remove_invoicing_disabled_from_user.rb │ ├── 20190211124135_add_footprint_to_invoice.rb │ ├── 20190211124726_add_footprint_to_invoice_item.rb │ ├── 20190225101256_add_totals_to_accounting_period.rb │ ├── 20190225102847_add_footprint_to_accounting_period.rb │ ├── 20190227143153_add_environment_to_invoice.rb │ ├── 20190314095931_add_operator_to_invoice.rb │ ├── 20190320091148_add_footprint_to_history_values.rb │ ├── 20190521122429_create_invoicing_profiles.rb │ ├── 20190521123642_create_statistic_profile.rb │ ├── 20190521124609_migrate_profile_to_invoicing_profile.rb │ ├── 20190521151142_migrate_profile_to_statistic_profile.rb │ ├── 20190522115230_migrate_invoice_to_invoicing_profile.rb │ ├── 20190523123916_migrate_wallet_to_invoicing_profile.rb │ ├── 20190523140823_migrate_history_value_to_invoicing_profile.rb │ ├── 20190528140012_remove_user_id_columns.rb │ ├── 20190604064929_migrate_reservation_to_statistic_profile.rb │ ├── 20190604065348_migrate_subscription_to_statistic_profile.rb │ ├── 20190604070903_migrate_projet_to_statistic_profile.rb │ ├── 20190604075717_remove_statistic_columns.rb │ ├── 20190605141322_create_statistic_profile_trainings.rb │ ├── 20190606074050_migrate_user_trainings_to_statistic_profile_trainings.rb │ ├── 20190606074801_delete_user_trainings.rb │ ├── 20190730085826_add_extension_to_export.rb │ ├── 20190910131825_add_stp_payment_intent_id_to_invoices.rb │ ├── 20190910141336_remove_stp_invoice_id_from_reservations.rb │ ├── 20190917123631_rename_avoir_mode_to_payment_method_from_invoices.rb │ ├── 20190924140726_create_imports.rb │ ├── 20191113103352_add_recurrence_to_availabilities.rb │ ├── 20191127153729_create_i_calendars.rb │ ├── 20191202135507_create_i_calendar_events.rb │ ├── 20200127111404_add_name_to_stylesheet.rb │ ├── 20200206132857_create_plans_availabilities.rb │ ├── 20200218092221_add_tours_to_profile.rb │ ├── 20200408101654_match_v1_models.rb │ ├── 20200415141809_add_slot_duration_to_availability.rb │ ├── 20200511075933_fix_accounting_periods.rb │ ├── 20200622135401_add_pg_search_dmetaphone_support_functions.rb │ ├── 20200623134900_add_search_vector_to_project.rb │ ├── 20200623141305_update_search_vector_of_projects.rb │ ├── 20200629123011_update_pg_trgm.rb │ ├── 20200721162939_create_footprint_debugs.rb │ ├── 20201027092149_add_monthly_payment_to_plan.rb │ ├── 20201027100746_create_payment_schedules.rb │ ├── 20201027101809_create_payment_schedule_items.rb │ ├── 20201112092002_add_stp_product_id_to_objects.rb │ ├── 20210416073410_create_payment_gateway_objects.rb │ ├── 20210416083610_migrate_stripe_ids_to_payment_gateway_objects.rb │ ├── 20210521085710_add_object_to_invoice_item.rb │ ├── 20210525134018_create_payment_schedule_objects.rb │ ├── 20210525150942_remove_transactable_from_wallet_transaction.rb │ ├── 20210608082748_create_plan_categories.rb │ ├── 20210621122103_create_prepaid_packs.rb │ ├── 20210621123954_create_statistic_profile_prepaid_packs.rb │ ├── 20211014135151_add_start_at_again_to_subscription.rb │ ├── 20211018121822_add_start_at_to_payment_schedule.rb │ ├── 20211220143400_add_duration_to_price.rb │ ├── 20220111134253_migrate_payment_schedule_payment_method_check.rb │ ├── 20220118123741_fix_subscription_statistic_types.rb │ ├── 20220225143203_drop_table_open_api_calls_count_tracings.rb │ ├── 20220316133304_allow_update_closed_by_on_accounting_periods.rb │ ├── 20220322135836_add_scopes_to_o_auth2_provider.rb │ ├── 20220328141618_create_open_id_connect_providers.rb │ ├── 20220328144305_rename_o_auth2_mappings_to_auth_provider_mappings.rb │ ├── 20220328145017_migrate_o_auth2_provider_id_from_auth_provider_mappings.rb │ ├── 20220422090245_create_proof_of_identity_types.rb │ ├── 20220422090709_create_proof_of_identity_types_groups.rb │ ├── 20220425095244_add_mapped_from_sso_to_user.rb │ ├── 20220426162334_create_proof_of_identity_files.rb │ ├── 20220428123828_create_proof_of_identity_refusals.rb │ ├── 20220428125751_create_join_table_proof_of_identity_type_proof_of_identity_refusal.rb │ ├── 20220429164234_add_validated_at_to_user.rb │ ├── 20220506143526_create_profile_custom_fields.rb │ ├── 20220509105714_create_user_profile_custom_fields.rb │ ├── 20220517140916_add_description_to_plan_category.rb │ ├── 20220531160223_change_oidc_scope_to_array.rb │ ├── 20220620072750_create_product_categories.rb │ ├── 20220704084929_add_reservation_fields_to_slots_reservations.rb │ ├── 20220705125232_insert_missing_slots.rb │ ├── 20220712153708_create_products.rb │ ├── 20220712160137_create_join_table_product_machine.rb │ ├── 20220720135828_migrate_slots_notifications.rb │ ├── 20220803091913_add_is_main_to_assets.rb │ ├── 20220805083431_create_product_stock_movements.rb │ ├── 20220808161314_create_orders.rb │ ├── 20220818160821_create_order_items.rb │ ├── 20220822081222_add_payment_state_to_order.rb │ ├── 20220826074619_rename_amount_to_total_in_order.rb │ ├── 20220826085923_add_order_item_id_to_product_stock_movement.rb │ ├── 20220826090821_add_wallet_amount_and_wallet_transaction_id_to_order.rb │ ├── 20220826091819_add_payment_method_to_order.rb │ ├── 20220826093503_rename_operator_id_to_operator_profile_id_in_order.rb │ ├── 20220826133518_add_footprint_and_environment_to_order.rb │ ├── 20220826140921_add_coupon_id_to_order.rb │ ├── 20220826175129_add_paid_total_to_order.rb │ ├── 20220909131300_add_invoice_id_to_order.rb │ ├── 20220914145334_remove_payment_state_from_orders.rb │ ├── 20220915133100_create_order_activities.rb │ ├── 20220920131912_add_index_on_product_slug.rb │ ├── 20221003133019_add_index_on_product_category_slug.rb │ ├── 20221110120338_create_advanced_accountings.rb │ ├── 20221118092948_create_accounting_lines.rb │ ├── 20221122123557_add_deleted_at_to_machine.rb │ ├── 20221122123605_add_deleted_at_to_space.rb │ ├── 20221206100225_add_external_id_to_invoicing_profile.rb │ ├── 20221208123822_rename_accounting_settings.rb │ ├── 20221212162655_create_machine_categories.rb │ ├── 20221216090005_add_machine_category_id_to_machine.rb │ ├── 20221220105939_add_note_to_profile.rb │ ├── 20221227141529_add_reservable_to_machine.rb │ ├── 20221228152719_create_cart_item_event_reservation.rb │ ├── 20221228152747_create_cart_item_event_reservation_ticket.rb │ ├── 20221228160449_create_cart_item_reservation_slot.rb │ ├── 20221229085430_create_cart_item_reservation.rb │ ├── 20221229094334_create_cart_item_free_extension.rb │ ├── 20221229100157_create_cart_item_subscription.rb │ ├── 20221229103407_create_cart_item_prepaid_pack.rb │ ├── 20221229105954_add_unique_index_on_coupon_code.rb │ ├── 20221229115757_create_cart_item_coupon.rb │ ├── 20221229120932_create_cart_item_payment_schedule.rb │ ├── 20230106081943_add_not_null_to_invoice_items_object.rb │ ├── 20230112151631_add_places_cache_to_slot.rb │ ├── 20230113145632_add_not_null_to_slots_reservation.rb │ ├── 20230116142738_create_statuses.rb │ ├── 20230119143245_add_deleted_at_to_event.rb │ ├── 20230124094255_add_auto_cancel_to_trainings.rb │ ├── 20230126160900_create_notification_types.rb │ ├── 20230127091337_add_authorization_to_trainings.rb │ ├── 20230127100506_create_notification_preferences.rb │ ├── 20230131104958_change_default_for_plan_is_rolling.rb │ ├── 20230213134954_rename_proof_of_identity_to_supporting_document.rb │ ├── 20230302120458_add_uniqueness_constraints.rb │ ├── 20230307123611_add_limiting_to_plan.rb │ ├── 20230307123841_create_plan_limitations.rb │ ├── 20230309094535_create_prepaid_pack_reservations.rb │ ├── 20230315095054_add_machine_visibility_to_plan.rb │ ├── 20230323085947_create_chained_elements.rb │ ├── 20230323104259_migrate_chaining_system.rb │ ├── 20230323104727_drop_footprint_debugs.rb │ ├── 20230324090312_drop_footprint_column.rb │ ├── 20230324095639_add_order_number.rb │ ├── 20230328094807_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20230328094808_create_active_storage_variant_records.active_storage.rb │ ├── 20230328094809_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb │ ├── 20230331132506_create_children.rb │ ├── 20230509161557_create_booking_users.rb │ ├── 20230510141305_create_cart_item_event_reservation_booking_users.rb │ ├── 20230511081018_add_event_type_to_event.rb │ ├── 20230524080448_add_ducument_type_to_supporting_document_type.rb │ ├── 20230524083558_change_user_id_to_supportable_from_supporting_document_file.rb │ ├── 20230524110215_change_user_id_to_supportable_from_supporting_document_refusal.rb │ ├── 20230525101006_add_validated_at_to_child.rb │ ├── 20230612123250_add_pre_registration_to_event.rb │ ├── 20230626103314_add_validated_at_to_slots_reservations.rb │ ├── 20230626122844_create_project_categories.rb │ ├── 20230626122947_create_projects_project_categories.rb │ ├── 20230710072403_add_is_valid_to_slots_reservations.rb │ ├── 20230718133636_create_reservation_contexts.rb │ ├── 20230718134350_add_reservation_context_id_to_reservation.rb │ ├── 20230720085857_add_reservation_context_id_to_cart_item_reservations.rb │ ├── 20230728072726_add_ancestry_to_spaces.rb │ ├── 20230728090257_add_space_id_to_machines.rb │ ├── 20230828073428_add_roles_to_notification_types.rb │ ├── 20230831103208_add_is_confirm_to_slots_reservations.rb │ ├── 20230901090637_add_supporting_documents_reminder_sent_at_to_users.rb │ ├── 20230907124230_add_extra_authorize_params_to_open_id_connect_provider.rb │ ├── 20231103093436_add_label_i18n_path_to_statistic_tables.rb │ ├── 20231108094433_fix_plan_statistic_sub_types.rb │ ├── 20240116163703_create_saml_providers.rb │ ├── 20240126145351_add_profile_url_to_saml_providers.rb │ ├── 20240126192110_add_idp_cert_to_saml_provider.rb │ ├── 20240220140225_add_idp_slo_service_url_to_saml_providers.rb │ ├── 20240327095614_add_sp_certificate_to_saml_provider.rb │ ├── 20240605085829_add_uid_attribute_to_saml_provider.rb │ ├── 20250424164457_create_coupon_usages.rb │ └── 20250904090534_change_is_allow_contact_default.rb ├── schema.rb ├── seeds.rb ├── seeds │ ├── notification_types.rb │ ├── settings.rb │ └── statistics.rb └── structure.sql ├── doc ├── README.md ├── architecture.md ├── availabilities-reservations-models.md ├── class-diagram.svg ├── database.svg ├── development_readme.md ├── elastic_upgrade.md ├── elasticsearch.md ├── environment.md ├── fr │ └── guide_utilisation_fab_manager_v5.4.pdf ├── gem-dependencies.svg ├── js-modules-dependencies.svg ├── known-issues.md ├── open_projects.md ├── plugins.md ├── postgres_upgrade.md ├── postgresql_readme.md ├── production_readme.md ├── proxy.md ├── sso_open_id_connect.md ├── sso_saml.md ├── sso_with_github.md ├── translation_readme.md ├── upgrade_v1.md └── virtual-machine.md ├── docker ├── database.yml ├── development │ ├── docker-compose.yml │ └── hosts └── supervisor.conf ├── env.example ├── jest.config.js ├── lib ├── database │ └── sequence.rb ├── fab_hub.rb ├── fab_manager.rb ├── file_size_validator.rb ├── integrity │ ├── archive_helper.rb │ └── checksum.rb ├── omni_auth │ ├── data_mapping │ │ ├── base.rb │ │ └── mapper.rb │ ├── oauth2.rb │ ├── openid_connect.rb │ ├── saml.rb │ └── strategies │ │ ├── sso_oauth2_provider.rb │ │ ├── sso_openid_connect_provider.rb │ │ └── sso_saml_provider.rb ├── pay_zen │ ├── charge.rb │ ├── client.rb │ ├── helper.rb │ ├── item.rb │ ├── order.rb │ ├── pci │ │ └── charge.rb │ ├── service.rb │ ├── subscription.rb │ ├── token.rb │ └── transaction.rb ├── payment │ ├── helper.rb │ ├── item.rb │ ├── item_builder.rb │ └── service.rb ├── plugin │ └── instance.rb ├── plugin_registry.rb ├── provider_config.rb ├── sso_logger.rb ├── stripe │ ├── helper.rb │ ├── item.rb │ └── service.rb ├── tasks │ ├── .keep │ ├── db.rake │ └── fablab │ │ ├── auth.rake │ │ ├── chain.rake │ │ ├── es.rake │ │ ├── fix.rake │ │ ├── fix_availabilities.rake │ │ ├── fix_invoice_items.rake │ │ ├── fix_invoices.rake │ │ ├── fix_references.rake │ │ ├── maintenance.rake │ │ ├── openlab.rake │ │ ├── payzen.rake │ │ ├── restore_order_number.rake │ │ ├── setup.rake │ │ └── stripe.rake └── version.rb ├── log └── .keep ├── package.json ├── plugins └── .keep ├── postcss.config.js ├── provision ├── box_setup.zsh ├── box_tuning.zsh └── zsh_setup.sh ├── public ├── 404.html ├── 422.html ├── 500.html ├── about-fablab.jpg ├── default-image.png ├── example.csv ├── rank-icon.svg └── robots.txt ├── scripts ├── cve-2021-44228.sh ├── elastic-upgrade.sh ├── mount-auth-provider.sh ├── mount-payment-schedules.sh ├── mount-proof-of-identity-files.sh ├── mount-webpack.sh ├── nginx-packs-directive.sh ├── pg-analyzers.sh ├── postgre-upgrade.sh ├── redis-upgrade.sh ├── rename-adminsys.sh ├── rename-supporting-document.sh ├── run.sh ├── set-docker-user.sh ├── tests.sh ├── translations │ ├── download.sh │ └── upload.sh └── use-relative-paths.sh ├── setup ├── docker-compose.yml ├── elasticsearch.yml ├── env.example ├── letsencrypt.service ├── letsencrypt.timer ├── log4j2.properties ├── nginx.conf.example ├── nginx_with_ssl.conf.example ├── proxy │ ├── .npmrc │ └── gitconfig ├── setup.sh ├── upgrade.sh └── webroot.ini.example ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ ├── README.md │ ├── abuses.yml │ ├── accounting_lines.yml │ ├── accounting_periods.yml │ ├── addresses.yml │ ├── age_ranges.yml │ ├── assets.yml │ ├── auth_provider_mappings.yml │ ├── auth_providers.yml │ ├── availabilities.yml │ ├── availability_tags.yml │ ├── categories.yml │ ├── chained_elements.yml │ ├── components.yml │ ├── coupons.yml │ ├── credits.yml │ ├── custom_assets.yml │ ├── database_providers.yml │ ├── event_price_categories.yml │ ├── event_themes.yml │ ├── events.yml │ ├── events_event_themes.yml │ ├── exports.yml │ ├── files │ │ ├── accounting │ │ │ └── 148622585 │ │ │ │ └── 2015-01-01_2015-12-31.zip │ │ ├── document.pdf │ │ ├── document2.pdf │ │ ├── event │ │ │ ├── Party.jpg │ │ │ └── Skateboard.jpg │ │ ├── invoices │ │ │ ├── 2 │ │ │ │ └── FabManager_invoice-12_05092022.pdf │ │ │ ├── 4 │ │ │ │ └── FabManager_invoice-10_13072022.pdf │ │ │ ├── 5 │ │ │ │ └── FabManager_invoice-9_13072022.pdf │ │ │ └── 7 │ │ │ │ └── FabManager_invoice-3_10062015.pdf │ │ ├── machines │ │ │ └── Laser_cutting_machine.jpg │ │ ├── members.csv │ │ ├── products │ │ │ ├── pla-filament.jpg │ │ │ └── pla-filament2.jpg │ │ ├── spaces │ │ │ └── Biology_laboratory.jpg │ │ └── trainings │ │ │ └── first-aid.jpg │ ├── groups.yml │ ├── history_values.yml │ ├── i_calendar_events.yml │ ├── i_calendars.yml │ ├── imports.yml │ ├── invoice_items.yml │ ├── invoices.yml │ ├── invoicing_profiles.yml │ ├── licences.yml │ ├── machine_categories.yml │ ├── machines.yml │ ├── machines_availabilities.yml │ ├── notification_preferences.yml │ ├── notification_types.yml │ ├── notifications.yml │ ├── o_auth2_providers.yml │ ├── offer_days.yml │ ├── open_api_clients.yml │ ├── order_activities.yml │ ├── order_items.yml │ ├── orders.yml │ ├── organizations.yml │ ├── payment_gateway_objects.yml │ ├── payment_schedule_items.yml │ ├── payment_schedule_objects.yml │ ├── payment_schedules.yml │ ├── plans.yml │ ├── prepaid_packs.yml │ ├── price_categories.yml │ ├── prices.yml │ ├── product_categories.yml │ ├── product_stock_movements.yml │ ├── products.yml │ ├── profiles.yml │ ├── project_categories.yml │ ├── project_steps.yml │ ├── project_users.yml │ ├── projects.yml │ ├── projects_components.yml │ ├── projects_machines.yml │ ├── projects_project_categories.yml │ ├── projects_themes.yml │ ├── reservation_contexts.yml │ ├── reservations.yml │ ├── roles.yml │ ├── settings.yml │ ├── slots.yml │ ├── slots_reservations.yml │ ├── spaces.yml │ ├── spaces_availabilities.yml │ ├── statistic_custom_aggregations.yml │ ├── statistic_fields.yml │ ├── statistic_graphs.yml │ ├── statistic_indices.yml │ ├── statistic_profile_prepaid_packs.yml │ ├── statistic_profile_trainings.yml │ ├── statistic_profiles.yml │ ├── statistic_sub_types.yml │ ├── statistic_type_sub_types.yml │ ├── statistic_types.yml │ ├── statuses.yml │ ├── stylesheets.yml │ ├── subscriptions.yml │ ├── tags.yml │ ├── themes.yml │ ├── tickets.yml │ ├── trainings.yml │ ├── trainings_availabilities.yml │ ├── trainings_machines.yml │ ├── trainings_pricings.yml │ ├── user_tags.yml │ ├── users.yml │ ├── users_credits.yml │ ├── users_roles.yml │ ├── wallet_transactions.yml │ └── wallets.yml ├── frontend │ ├── __fixtures__ │ │ ├── age_ranges.ts │ │ ├── auth_providers.ts │ │ ├── event_categories.ts │ │ ├── event_price_categories.ts │ │ ├── event_themes.ts │ │ ├── groups.ts │ │ ├── machines.ts │ │ ├── notification_types.ts │ │ ├── notifications.ts │ │ ├── plan_categories.ts │ │ ├── plans.ts │ │ ├── product_categories.ts │ │ ├── product_stock_movements.ts │ │ ├── products.ts │ │ ├── profile_custom_fields.ts │ │ ├── reservation_contexts.ts │ │ ├── settings.ts │ │ ├── spaces.ts │ │ ├── statuses.ts │ │ └── users.ts │ ├── __lib__ │ │ ├── auth.ts │ │ ├── fixtures.ts │ │ ├── tiptap.ts │ │ └── ui-router.ts │ ├── __mocks__ │ │ ├── fileMock.js │ │ └── styleMock.js │ ├── __setup__ │ │ ├── globals.js │ │ ├── mocks.js │ │ ├── rects.js │ │ └── server.js │ ├── components │ │ ├── accounting │ │ │ ├── accounting-codes-settings.test.tsx │ │ │ └── advanced-accounting-form.test.tsx │ │ ├── editorial-block │ │ │ └── editorial-block.test.tsx │ │ ├── events │ │ │ └── event-form.test.tsx │ │ ├── invoices │ │ │ ├── invoices-settings-panel.test.tsx │ │ │ └── vat-settings-modal.test.tsx │ │ ├── machines │ │ │ └── machines-settings.test.tsx │ │ ├── notifications │ │ │ └── notifications-list.test.tsx │ │ ├── plans │ │ │ └── plan-form.test.tsx │ │ ├── projects │ │ │ ├── status-filter.test.tsx │ │ │ └── status-settings.test.tsx │ │ ├── store │ │ │ └── product-form.test.tsx │ │ ├── trainings │ │ │ └── training-editorial-block.test.tsx │ │ └── user │ │ │ ├── password-strength.test.tsx │ │ │ └── user-profile-form.test.tsx │ ├── lib │ │ ├── api.test.ts │ │ ├── deferred.test.ts │ │ ├── format.test.ts │ │ └── parsing.test.ts │ └── tsconfig.json ├── helpers │ ├── .keep │ ├── archive_helper.rb │ ├── auth_provider_helper.rb │ ├── invoice_helper.rb │ └── payment_schedule_helper.rb ├── integration │ ├── .keep │ ├── abuses_test.rb │ ├── accounting_period_test.rb │ ├── admins_test.rb │ ├── age_ranges_test.rb │ ├── analytics_test.rb │ ├── auth_providers_test.rb │ ├── availabilities │ │ ├── as_admin_test.rb │ │ ├── as_public_test.rb │ │ ├── as_user_test.rb │ │ └── update_test.rb │ ├── categories_test.rb │ ├── components_test.rb │ ├── credits │ │ ├── machine_test.rb │ │ ├── training_test.rb │ │ └── user_info_test.rb │ ├── event_themes_test.rb │ ├── events │ │ ├── as_admin_test.rb │ │ ├── as_user_test.rb │ │ ├── delete_test.rb │ │ ├── recurrence_test.rb │ │ ├── recurrence_update_test.rb │ │ └── timezone_test.rb │ ├── exports │ │ ├── accounting_export_test.rb │ │ ├── availabilites_export_test.rb │ │ ├── members_export_test.rb │ │ ├── reservations_export_test.rb │ │ ├── statistics_export_test.rb │ │ └── subscriptions_export_test.rb │ ├── groups_test.rb │ ├── invoices │ │ ├── as_admin_test.rb │ │ ├── round_test.rb │ │ └── vat_test.rb │ ├── machine_categories_test.rb │ ├── machines_test.rb │ ├── members │ │ ├── as_admin_test.rb │ │ ├── import_test.rb │ │ └── list_test.rb │ ├── notifications │ │ ├── notification_preferences_test.rb │ │ ├── notification_types_test.rb │ │ └── notifications_test.rb │ ├── open_api │ │ ├── accounting_test.rb │ │ ├── availabilities_test.rb │ │ ├── bookable_machines_test.rb │ │ ├── events_test.rb │ │ ├── invoices_test.rb │ │ ├── machines_test.rb │ │ ├── plan_categories_test.rb │ │ ├── plans_test.rb │ │ ├── prices_test.rb │ │ ├── reservations_test.rb │ │ ├── spaces_test.rb │ │ ├── subscriptions_test.rb │ │ ├── trainings_test.rb │ │ ├── user_trainings_test.rb │ │ └── users_test.rb │ ├── open_id_connect_test.rb │ ├── order │ │ └── create_cart_item_test.rb │ ├── payment_schedules_test.rb │ ├── payzen_test.rb │ ├── plans │ │ └── create_plan_test.rb │ ├── prepaid_packs_test.rb │ ├── prices │ │ └── compute_test.rb │ ├── products_test.rb │ ├── project_categories_test.rb │ ├── projects_test.rb │ ├── reservation_contexts_test.rb │ ├── reservations │ │ ├── free_no_invoice_test.rb │ │ ├── last_minute_test.rb │ │ ├── local_payment_test.rb │ │ ├── local_payment_with_wallet_test.rb │ │ ├── pay_with_prepaid_pack_test.rb │ │ ├── pay_with_wallet_test.rb │ │ ├── payment_schedule_test.rb │ │ ├── privileged_user_test.rb │ │ ├── reserve_machine_test.rb │ │ ├── reserve_space_test.rb │ │ ├── reserve_training_test.rb │ │ ├── restricted_test.rb │ │ ├── space_seats_test.rb │ │ └── with_subscription_test.rb │ ├── rss │ │ ├── events_test.rb │ │ └── projects_test.rb │ ├── settings_test.rb │ ├── slots_reservations_test.rb │ ├── spaces_test.rb │ ├── statuses_test.rb │ ├── store │ │ ├── admin_order_for_himself_test.rb │ │ ├── admin_pay_order_test.rb │ │ └── user_pay_order_test.rb │ ├── subscriptions │ │ ├── cancel_test.rb │ │ ├── create_as_admin_test.rb │ │ ├── create_as_user_test.rb │ │ ├── create_with_payment_schedule_test.rb │ │ ├── free_extension_test.rb │ │ ├── renew_as_admin_test.rb │ │ └── renew_as_user_test.rb │ ├── tags_test.rb │ ├── themes_test.rb │ ├── trainings │ │ └── availabilities_test.rb │ ├── trainings_test.rb │ └── wallets_test.rb ├── lib │ └── pay_zen │ │ └── service_test.rb ├── mailers │ └── previews │ │ ├── notifications_mailer_preview.rb │ │ └── users_mailer_preview.rb ├── meta │ └── i18n_test.rb ├── models │ ├── .keep │ ├── availability_test.rb │ ├── chained_element_test.rb │ ├── coupon_test.rb │ ├── event_price_category_test.rb │ ├── event_test.rb │ ├── export_test.rb │ ├── history_value_test.rb │ ├── organization_test.rb │ ├── price_category_test.rb │ ├── project_category_test.rb │ ├── project_test.rb │ ├── reservation_context_test.rb │ ├── space_test.rb │ ├── statistic_profile_prepaid_pack_test.rb │ ├── ticket_test.rb │ ├── user_test.rb │ ├── wallet_test.rb │ └── wallet_transaction_test.rb ├── services │ ├── accounting_service_test.rb │ ├── availabilities │ │ ├── availabilities_service_test.rb │ │ └── visibility_service_test.rb │ ├── cart │ │ ├── add_item_service_test.rb │ │ ├── check_cart_service_test.rb │ │ ├── find_or_create_service_test.rb │ │ ├── refresh_item_service_test.rb │ │ ├── remove_item_service_test.rb │ │ ├── set_customer_service_test.rb │ │ ├── set_offer_service_test.rb │ │ ├── set_quantity_service_test.rb │ │ └── update_total_service_test.rb │ ├── coupon_service_test.rb │ ├── invoices │ │ └── number_service_test.rb │ ├── open_lab_service_test.rb │ ├── payment_document_service_test.rb │ ├── prepaid_pack_service_test.rb │ ├── project_to_markdown_test.rb │ ├── reservation_limit_service_test.rb │ ├── slots │ │ └── interblocking_service_test.rb │ ├── statistics │ │ ├── reservation_subscription_statistic_service_test.rb │ │ └── store_statistic_service_test.rb │ ├── subscription_extension_after_reservation_test.rb │ ├── trainings │ │ ├── authorization_service_test.rb │ │ ├── auto_cancel_service_test.rb │ │ └── invalidation_service_test.rb │ ├── users_credits_manager_test.rb │ ├── users_export_service_test.rb │ └── wallet_service_test.rb ├── test_helper.rb ├── vcr_cassettes │ ├── confirm_payzen_payment_success.yml │ ├── create_payzen_payment_token_success.yml │ ├── last_minute_space_reservations_allowed.yml │ ├── last_minute_space_reservations_not_allowed.yml │ ├── reservations_and_subscription_create_for_restricted_slot_success.yml │ ├── reservations_create_for_machine_and_pay_wallet_success.yml │ ├── reservations_create_for_machine_as_admin_for_himself_success.yml │ ├── reservations_create_for_machine_with_subscription_success.yml │ ├── reservations_create_for_machine_without_subscription_error.yml │ ├── reservations_create_for_machine_without_subscription_success.yml │ ├── reservations_create_for_restricted_slot_fails.yml │ ├── reservations_create_for_restricted_slot_success.yml │ ├── reservations_create_for_space_success.yml │ ├── reservations_create_for_training_and_plan_by_pay_wallet_success.yml │ ├── reservations_create_for_training_without_subscription_success.yml │ ├── reservations_machine_and_plan_using_coupon_retrieve_invoice_from_stripe.yml │ ├── reservations_machine_and_plan_using_coupon_success.yml │ ├── reservations_machine_subscription_with_payment_schedule_coupon_wallet.yml │ ├── reservations_space_seats_user2.yml │ ├── reservations_space_seats_user3.yml │ ├── reservations_training_subscription_with_payment_schedule.yml │ ├── reservations_training_with_expired_coupon_error.yml │ ├── reserve_event_with_many_prices_and_payment_means.yml │ ├── reserve_event_with_many_prices_and_payment_means_retrieve_invoice_from_stripe.yml │ ├── store_order_admin_pay_by_card_and_wallet_success.yml │ ├── store_order_admin_pay_by_card_success.yml │ ├── store_order_admin_pay_by_cart_and_wallet_success.yml │ ├── store_order_pay_by_cart_and_wallet_success.yml │ ├── store_order_pay_by_cart_success.yml │ ├── subscriptions_admin_create_with_payment_schedule.yml │ ├── subscriptions_user_create_failed.yml │ ├── subscriptions_user_create_success.yml │ ├── subscriptions_user_create_success_with_wallet.yml │ ├── subscriptions_user_create_with_payment_schedule.yml │ ├── subscriptions_user_create_without_3ds_confirmation.yml │ ├── subscriptions_user_renew_failed.yml │ └── subscriptions_user_renew_success.yml └── workers │ ├── accounting_worker_test.rb │ ├── reservation_reminder_worker_test.rb │ └── supporting_documents_reminder_worker_test.rb ├── tsconfig.dev.json ├── tsconfig.json ├── vendor └── assets │ └── fonts │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-Italic.ttf │ └── OpenSans-Regular.ttf └── yarn.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gemrc: -------------------------------------------------------------------------------- 1 | gem: --no-document 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.github/ISSUE_TEMPLATE/support.md -------------------------------------------------------------------------------- /.github/workflows/brakeman-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.github/workflows/brakeman-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.15.0 2 | -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | fab-manager 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.2.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Capfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/cart_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/api/cart_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/files_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/api/files_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/plans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/api/plans_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/api/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/health_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/health_controller.rb -------------------------------------------------------------------------------- /app/controllers/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/rss/rss_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/rss/rss_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/doc/open_api/api_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/api_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/application_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/application_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/accounting_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/accounting_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/base_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/base_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/events_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/events_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/invoices_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/invoices_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/machines_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/machines_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/plans_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/plans_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/prices_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/prices_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/reservations_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/reservations_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/spaces_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/spaces_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/trainings_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/trainings_doc.rb -------------------------------------------------------------------------------- /app/doc/open_api/v1/users_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/doc/open_api/v1/users_doc.rb -------------------------------------------------------------------------------- /app/exceptions/cannot_refund_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/cannot_refund_error.rb -------------------------------------------------------------------------------- /app/exceptions/cart/anonymous_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/cart/anonymous_error.rb -------------------------------------------------------------------------------- /app/exceptions/cart/out_stock_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/cart/out_stock_error.rb -------------------------------------------------------------------------------- /app/exceptions/cart/zero_price_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/cart/zero_price_error.rb -------------------------------------------------------------------------------- /app/exceptions/configuration_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/configuration_error.rb -------------------------------------------------------------------------------- /app/exceptions/debit_wallet_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/debit_wallet_error.rb -------------------------------------------------------------------------------- /app/exceptions/duplicate_index_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/duplicate_index_error.rb -------------------------------------------------------------------------------- /app/exceptions/invalid_coupon_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/invalid_coupon_error.rb -------------------------------------------------------------------------------- /app/exceptions/invalid_group_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/invalid_group_error.rb -------------------------------------------------------------------------------- /app/exceptions/invalid_invoice_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/invalid_invoice_error.rb -------------------------------------------------------------------------------- /app/exceptions/locked_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/locked_error.rb -------------------------------------------------------------------------------- /app/exceptions/no_profile_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/no_profile_error.rb -------------------------------------------------------------------------------- /app/exceptions/payment_gateway_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/payment_gateway_error.rb -------------------------------------------------------------------------------- /app/exceptions/payzen_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/exceptions/payzen_error.rb -------------------------------------------------------------------------------- /app/frontend/application.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/application.js.erb -------------------------------------------------------------------------------- /app/frontend/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/application.scss -------------------------------------------------------------------------------- /app/frontend/images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/arrow-left.png -------------------------------------------------------------------------------- /app/frontend/images/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/default-image.png -------------------------------------------------------------------------------- /app/frontend/images/fabmanager-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/fabmanager-logo.png -------------------------------------------------------------------------------- /app/frontend/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/github.svg -------------------------------------------------------------------------------- /app/frontend/images/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/icons.svg -------------------------------------------------------------------------------- /app/frontend/images/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/mastercard.png -------------------------------------------------------------------------------- /app/frontend/images/no_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/no_avatar.png -------------------------------------------------------------------------------- /app/frontend/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/no_image.png -------------------------------------------------------------------------------- /app/frontend/images/payzen-secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/payzen-secure.png -------------------------------------------------------------------------------- /app/frontend/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/images/visa.png -------------------------------------------------------------------------------- /app/frontend/plugins.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/plugins.scss.erb -------------------------------------------------------------------------------- /app/frontend/printer.scss: -------------------------------------------------------------------------------- 1 | 2 | @import 'src/stylesheets/app.printer'; 3 | -------------------------------------------------------------------------------- /app/frontend/src/javascript/api/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/api/cart.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/api/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/api/plan.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/api/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/api/tag.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/api/user.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/app.js -------------------------------------------------------------------------------- /app/frontend/src/javascript/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/lib/api.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/lib/gtm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/lib/gtm.js -------------------------------------------------------------------------------- /app/frontend/src/javascript/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/lib/i18n.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/lib/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/lib/user.ts -------------------------------------------------------------------------------- /app/frontend/src/javascript/models/tag.ts: -------------------------------------------------------------------------------- 1 | export interface Tag { 2 | id?: number, 3 | name: string, 4 | } 5 | -------------------------------------------------------------------------------- /app/frontend/src/javascript/models/theme.ts: -------------------------------------------------------------------------------- 1 | export interface Theme { 2 | id: number, 3 | name: string 4 | } 5 | -------------------------------------------------------------------------------- /app/frontend/src/javascript/plugins.js.erb: -------------------------------------------------------------------------------- 1 | <% 2 | PluginRegistry.javascripts.each { |js| require_asset(js) } 3 | %> 4 | -------------------------------------------------------------------------------- /app/frontend/src/javascript/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/src/javascript/router.js -------------------------------------------------------------------------------- /app/frontend/src/stylesheets/modules/pricing/machines/edit-pack.scss: -------------------------------------------------------------------------------- 1 | .edit-pack { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /app/frontend/templates/cart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/cart/index.html -------------------------------------------------------------------------------- /app/frontend/templates/events/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/events/edit.html -------------------------------------------------------------------------------- /app/frontend/templates/events/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/events/new.html -------------------------------------------------------------------------------- /app/frontend/templates/events/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/events/show.html -------------------------------------------------------------------------------- /app/frontend/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/home.html -------------------------------------------------------------------------------- /app/frontend/templates/home/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/home/events.html -------------------------------------------------------------------------------- /app/frontend/templates/home/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/home/news.html -------------------------------------------------------------------------------- /app/frontend/templates/orders/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/orders/show.html -------------------------------------------------------------------------------- /app/frontend/templates/plans/_plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/plans/_plan.html -------------------------------------------------------------------------------- /app/frontend/templates/plans/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/plans/index.html -------------------------------------------------------------------------------- /app/frontend/templates/spaces/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/spaces/edit.html -------------------------------------------------------------------------------- /app/frontend/templates/spaces/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/spaces/new.html -------------------------------------------------------------------------------- /app/frontend/templates/spaces/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/spaces/show.html -------------------------------------------------------------------------------- /app/frontend/templates/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/store/index.html -------------------------------------------------------------------------------- /app/frontend/templates/wallet/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/frontend/templates/wallet/show.html -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/availability_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/helpers/availability_helper.rb -------------------------------------------------------------------------------- /app/helpers/db_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/helpers/db_helper.rb -------------------------------------------------------------------------------- /app/helpers/excel_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/helpers/excel_helper.rb -------------------------------------------------------------------------------- /app/helpers/settings_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/helpers/settings_helper.rb -------------------------------------------------------------------------------- /app/helpers/upload_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/helpers/upload_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/base_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/mailers/base_mailer.rb -------------------------------------------------------------------------------- /app/mailers/notifications_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/mailers/notifications_mailer.rb -------------------------------------------------------------------------------- /app/mailers/users_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/mailers/users_mailer.rb -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/abuse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/abuse.rb -------------------------------------------------------------------------------- /app/models/accounting_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/accounting_line.rb -------------------------------------------------------------------------------- /app/models/accounting_period.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/accounting_period.rb -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/advanced_accounting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/advanced_accounting.rb -------------------------------------------------------------------------------- /app/models/age_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/age_range.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/asset.rb -------------------------------------------------------------------------------- /app/models/auth_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/auth_provider.rb -------------------------------------------------------------------------------- /app/models/auth_provider_mapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/auth_provider_mapping.rb -------------------------------------------------------------------------------- /app/models/availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/availability.rb -------------------------------------------------------------------------------- /app/models/availability_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/availability_tag.rb -------------------------------------------------------------------------------- /app/models/avoir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/avoir.rb -------------------------------------------------------------------------------- /app/models/booking_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/booking_user.rb -------------------------------------------------------------------------------- /app/models/cart_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item.rb -------------------------------------------------------------------------------- /app/models/cart_item/base_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item/base_item.rb -------------------------------------------------------------------------------- /app/models/cart_item/coupon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item/coupon.rb -------------------------------------------------------------------------------- /app/models/cart_item/free_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item/free_extension.rb -------------------------------------------------------------------------------- /app/models/cart_item/prepaid_pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item/prepaid_pack.rb -------------------------------------------------------------------------------- /app/models/cart_item/reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item/reservation.rb -------------------------------------------------------------------------------- /app/models/cart_item/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/cart_item/subscription.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/chained_element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/chained_element.rb -------------------------------------------------------------------------------- /app/models/child.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/child.rb -------------------------------------------------------------------------------- /app/models/component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/component.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/amount_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/concerns/amount_concern.rb -------------------------------------------------------------------------------- /app/models/concerns/openlab_sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/concerns/openlab_sync.rb -------------------------------------------------------------------------------- /app/models/concerns/stat_concern.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/concerns/stat_concern.rb -------------------------------------------------------------------------------- /app/models/coupon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/coupon.rb -------------------------------------------------------------------------------- /app/models/coupon_usage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/coupon_usage.rb -------------------------------------------------------------------------------- /app/models/credit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/credit.rb -------------------------------------------------------------------------------- /app/models/custom_asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/custom_asset.rb -------------------------------------------------------------------------------- /app/models/custom_asset_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/custom_asset_file.rb -------------------------------------------------------------------------------- /app/models/database_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/database_provider.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/event_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/event_file.rb -------------------------------------------------------------------------------- /app/models/event_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/event_image.rb -------------------------------------------------------------------------------- /app/models/event_price_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/event_price_category.rb -------------------------------------------------------------------------------- /app/models/event_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/event_theme.rb -------------------------------------------------------------------------------- /app/models/events_event_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/events_event_theme.rb -------------------------------------------------------------------------------- /app/models/export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/export.rb -------------------------------------------------------------------------------- /app/models/footprintable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/footprintable.rb -------------------------------------------------------------------------------- /app/models/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/group.rb -------------------------------------------------------------------------------- /app/models/history_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/history_value.rb -------------------------------------------------------------------------------- /app/models/i_calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/i_calendar.rb -------------------------------------------------------------------------------- /app/models/i_calendar_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/i_calendar_event.rb -------------------------------------------------------------------------------- /app/models/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/import.rb -------------------------------------------------------------------------------- /app/models/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/invoice.rb -------------------------------------------------------------------------------- /app/models/invoice_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/invoice_item.rb -------------------------------------------------------------------------------- /app/models/invoicing_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/invoicing_profile.rb -------------------------------------------------------------------------------- /app/models/licence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/licence.rb -------------------------------------------------------------------------------- /app/models/machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/machine.rb -------------------------------------------------------------------------------- /app/models/machine_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/machine_category.rb -------------------------------------------------------------------------------- /app/models/machine_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/machine_file.rb -------------------------------------------------------------------------------- /app/models/machine_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/machine_image.rb -------------------------------------------------------------------------------- /app/models/machines_availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/machines_availability.rb -------------------------------------------------------------------------------- /app/models/machines_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/machines_product.rb -------------------------------------------------------------------------------- /app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/notification.rb -------------------------------------------------------------------------------- /app/models/notification_preference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/notification_preference.rb -------------------------------------------------------------------------------- /app/models/notification_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/notification_type.rb -------------------------------------------------------------------------------- /app/models/o_auth2_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/o_auth2_provider.rb -------------------------------------------------------------------------------- /app/models/offer_day.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/offer_day.rb -------------------------------------------------------------------------------- /app/models/open_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/open_api.rb -------------------------------------------------------------------------------- /app/models/open_api/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/open_api/client.rb -------------------------------------------------------------------------------- /app/models/open_api/parameter_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/open_api/parameter_error.rb -------------------------------------------------------------------------------- /app/models/open_id_connect_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/open_id_connect_provider.rb -------------------------------------------------------------------------------- /app/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/order.rb -------------------------------------------------------------------------------- /app/models/order_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/order_activity.rb -------------------------------------------------------------------------------- /app/models/order_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/order_item.rb -------------------------------------------------------------------------------- /app/models/organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/organization.rb -------------------------------------------------------------------------------- /app/models/partner_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/partner_plan.rb -------------------------------------------------------------------------------- /app/models/payment_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/payment_document.rb -------------------------------------------------------------------------------- /app/models/payment_gateway_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/payment_gateway_object.rb -------------------------------------------------------------------------------- /app/models/payment_schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/payment_schedule.rb -------------------------------------------------------------------------------- /app/models/payment_schedule_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/payment_schedule_item.rb -------------------------------------------------------------------------------- /app/models/payment_schedule_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/payment_schedule_object.rb -------------------------------------------------------------------------------- /app/models/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/plan.rb -------------------------------------------------------------------------------- /app/models/plan_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/plan_category.rb -------------------------------------------------------------------------------- /app/models/plan_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/plan_file.rb -------------------------------------------------------------------------------- /app/models/plan_limitation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/plan_limitation.rb -------------------------------------------------------------------------------- /app/models/plans_availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/plans_availability.rb -------------------------------------------------------------------------------- /app/models/prepaid_pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/prepaid_pack.rb -------------------------------------------------------------------------------- /app/models/prepaid_pack_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/prepaid_pack_reservation.rb -------------------------------------------------------------------------------- /app/models/price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/price.rb -------------------------------------------------------------------------------- /app/models/price_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/price_category.rb -------------------------------------------------------------------------------- /app/models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/product.rb -------------------------------------------------------------------------------- /app/models/product_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/product_category.rb -------------------------------------------------------------------------------- /app/models/product_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/product_file.rb -------------------------------------------------------------------------------- /app/models/product_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/product_image.rb -------------------------------------------------------------------------------- /app/models/product_stock_movement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/product_stock_movement.rb -------------------------------------------------------------------------------- /app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/profile.rb -------------------------------------------------------------------------------- /app/models/profile_custom_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/profile_custom_field.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_cao.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project_cao.rb -------------------------------------------------------------------------------- /app/models/project_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project_category.rb -------------------------------------------------------------------------------- /app/models/project_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project_image.rb -------------------------------------------------------------------------------- /app/models/project_step.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project_step.rb -------------------------------------------------------------------------------- /app/models/project_step_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project_step_image.rb -------------------------------------------------------------------------------- /app/models/project_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/project_user.rb -------------------------------------------------------------------------------- /app/models/projects_component.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/projects_component.rb -------------------------------------------------------------------------------- /app/models/projects_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/projects_machine.rb -------------------------------------------------------------------------------- /app/models/projects_project_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/projects_project_category.rb -------------------------------------------------------------------------------- /app/models/projects_space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/projects_space.rb -------------------------------------------------------------------------------- /app/models/projects_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/projects_theme.rb -------------------------------------------------------------------------------- /app/models/reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/reservation.rb -------------------------------------------------------------------------------- /app/models/reservation_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/reservation_context.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/saml_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/saml_provider.rb -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/models/shopping_cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/shopping_cart.rb -------------------------------------------------------------------------------- /app/models/slot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/slot.rb -------------------------------------------------------------------------------- /app/models/slots_reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/slots_reservation.rb -------------------------------------------------------------------------------- /app/models/space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/space.rb -------------------------------------------------------------------------------- /app/models/space_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/space_file.rb -------------------------------------------------------------------------------- /app/models/space_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/space_image.rb -------------------------------------------------------------------------------- /app/models/spaces_availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/spaces_availability.rb -------------------------------------------------------------------------------- /app/models/statistic_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_field.rb -------------------------------------------------------------------------------- /app/models/statistic_graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_graph.rb -------------------------------------------------------------------------------- /app/models/statistic_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_index.rb -------------------------------------------------------------------------------- /app/models/statistic_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_profile.rb -------------------------------------------------------------------------------- /app/models/statistic_sub_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_sub_type.rb -------------------------------------------------------------------------------- /app/models/statistic_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_type.rb -------------------------------------------------------------------------------- /app/models/statistic_type_sub_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/statistic_type_sub_type.rb -------------------------------------------------------------------------------- /app/models/stats/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/account.rb -------------------------------------------------------------------------------- /app/models/stats/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/event.rb -------------------------------------------------------------------------------- /app/models/stats/machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/machine.rb -------------------------------------------------------------------------------- /app/models/stats/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/order.rb -------------------------------------------------------------------------------- /app/models/stats/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/project.rb -------------------------------------------------------------------------------- /app/models/stats/space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/space.rb -------------------------------------------------------------------------------- /app/models/stats/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/subscription.rb -------------------------------------------------------------------------------- /app/models/stats/training.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/training.rb -------------------------------------------------------------------------------- /app/models/stats/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stats/user.rb -------------------------------------------------------------------------------- /app/models/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/status.rb -------------------------------------------------------------------------------- /app/models/stylesheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/stylesheet.rb -------------------------------------------------------------------------------- /app/models/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/subscription.rb -------------------------------------------------------------------------------- /app/models/supporting_document_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/supporting_document_file.rb -------------------------------------------------------------------------------- /app/models/supporting_document_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/supporting_document_type.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/theme.rb -------------------------------------------------------------------------------- /app/models/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/ticket.rb -------------------------------------------------------------------------------- /app/models/training.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/training.rb -------------------------------------------------------------------------------- /app/models/training_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/training_image.rb -------------------------------------------------------------------------------- /app/models/trainings_availability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/trainings_availability.rb -------------------------------------------------------------------------------- /app/models/trainings_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/trainings_machine.rb -------------------------------------------------------------------------------- /app/models/trainings_pricing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/trainings_pricing.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/user_avatar.rb -------------------------------------------------------------------------------- /app/models/user_profile_custom_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/user_profile_custom_field.rb -------------------------------------------------------------------------------- /app/models/user_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/user_tag.rb -------------------------------------------------------------------------------- /app/models/users_credit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/users_credit.rb -------------------------------------------------------------------------------- /app/models/wallet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/wallet.rb -------------------------------------------------------------------------------- /app/models/wallet_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/models/wallet_transaction.rb -------------------------------------------------------------------------------- /app/pdfs/data/watermark-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-de.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-en.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-es.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-fr.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark-it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-it.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-no.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark-pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark-pt.png -------------------------------------------------------------------------------- /app/pdfs/data/watermark.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/data/watermark.xcf -------------------------------------------------------------------------------- /app/pdfs/pdf/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/pdf/invoice.rb -------------------------------------------------------------------------------- /app/pdfs/pdf/payment_schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/pdfs/pdf/payment_schedule.rb -------------------------------------------------------------------------------- /app/policies/abuse_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/abuse_policy.rb -------------------------------------------------------------------------------- /app/policies/admin_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/admin_policy.rb -------------------------------------------------------------------------------- /app/policies/age_range_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/age_range_policy.rb -------------------------------------------------------------------------------- /app/policies/analytics_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/analytics_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/auth_provider_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/auth_provider_policy.rb -------------------------------------------------------------------------------- /app/policies/availability_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/availability_policy.rb -------------------------------------------------------------------------------- /app/policies/avoir_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/avoir_policy.rb -------------------------------------------------------------------------------- /app/policies/cart_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/cart_context.rb -------------------------------------------------------------------------------- /app/policies/cart_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/cart_policy.rb -------------------------------------------------------------------------------- /app/policies/category_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/category_policy.rb -------------------------------------------------------------------------------- /app/policies/checkout_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/checkout_policy.rb -------------------------------------------------------------------------------- /app/policies/child_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/child_policy.rb -------------------------------------------------------------------------------- /app/policies/component_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/component_policy.rb -------------------------------------------------------------------------------- /app/policies/coupon_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/coupon_policy.rb -------------------------------------------------------------------------------- /app/policies/credit_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/credit_policy.rb -------------------------------------------------------------------------------- /app/policies/custom_asset_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/custom_asset_policy.rb -------------------------------------------------------------------------------- /app/policies/event_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/event_policy.rb -------------------------------------------------------------------------------- /app/policies/event_theme_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/event_theme_policy.rb -------------------------------------------------------------------------------- /app/policies/export_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/export_policy.rb -------------------------------------------------------------------------------- /app/policies/file_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/file_policy.rb -------------------------------------------------------------------------------- /app/policies/group_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/group_policy.rb -------------------------------------------------------------------------------- /app/policies/i_calendar_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/i_calendar_policy.rb -------------------------------------------------------------------------------- /app/policies/import_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/import_policy.rb -------------------------------------------------------------------------------- /app/policies/invoice_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/invoice_policy.rb -------------------------------------------------------------------------------- /app/policies/licence_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/licence_policy.rb -------------------------------------------------------------------------------- /app/policies/local_payment_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/local_payment_context.rb -------------------------------------------------------------------------------- /app/policies/local_payment_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/local_payment_policy.rb -------------------------------------------------------------------------------- /app/policies/machine_category_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/machine_category_policy.rb -------------------------------------------------------------------------------- /app/policies/machine_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/machine_policy.rb -------------------------------------------------------------------------------- /app/policies/open_api/client_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/open_api/client_policy.rb -------------------------------------------------------------------------------- /app/policies/order_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/order_policy.rb -------------------------------------------------------------------------------- /app/policies/partner_plan_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/partner_plan_policy.rb -------------------------------------------------------------------------------- /app/policies/payment_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/payment_policy.rb -------------------------------------------------------------------------------- /app/policies/payment_schedule_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/payment_schedule_policy.rb -------------------------------------------------------------------------------- /app/policies/payzen_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/payzen_policy.rb -------------------------------------------------------------------------------- /app/policies/plan_category_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/plan_category_policy.rb -------------------------------------------------------------------------------- /app/policies/plan_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/plan_policy.rb -------------------------------------------------------------------------------- /app/policies/prepaid_pack_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/prepaid_pack_policy.rb -------------------------------------------------------------------------------- /app/policies/price_category_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/price_category_policy.rb -------------------------------------------------------------------------------- /app/policies/price_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/price_policy.rb -------------------------------------------------------------------------------- /app/policies/pricing_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/pricing_policy.rb -------------------------------------------------------------------------------- /app/policies/product_category_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/product_category_policy.rb -------------------------------------------------------------------------------- /app/policies/product_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/product_policy.rb -------------------------------------------------------------------------------- /app/policies/project_category_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/project_category_policy.rb -------------------------------------------------------------------------------- /app/policies/project_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/project_policy.rb -------------------------------------------------------------------------------- /app/policies/reservation_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/reservation_context.rb -------------------------------------------------------------------------------- /app/policies/reservation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/reservation_policy.rb -------------------------------------------------------------------------------- /app/policies/setting_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/setting_context.rb -------------------------------------------------------------------------------- /app/policies/setting_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/setting_policy.rb -------------------------------------------------------------------------------- /app/policies/space_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/space_policy.rb -------------------------------------------------------------------------------- /app/policies/statistic_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/statistic_policy.rb -------------------------------------------------------------------------------- /app/policies/status_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/status_policy.rb -------------------------------------------------------------------------------- /app/policies/subscription_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/subscription_context.rb -------------------------------------------------------------------------------- /app/policies/subscription_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/subscription_policy.rb -------------------------------------------------------------------------------- /app/policies/tag_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/tag_policy.rb -------------------------------------------------------------------------------- /app/policies/theme_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/theme_policy.rb -------------------------------------------------------------------------------- /app/policies/training_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/training_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/policies/version_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/version_policy.rb -------------------------------------------------------------------------------- /app/policies/wallet_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/policies/wallet_policy.rb -------------------------------------------------------------------------------- /app/services/auth_provider_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/auth_provider_service.rb -------------------------------------------------------------------------------- /app/services/cart/add_item_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/cart/add_item_service.rb -------------------------------------------------------------------------------- /app/services/cart_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/cart_service.rb -------------------------------------------------------------------------------- /app/services/child_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/child_service.rb -------------------------------------------------------------------------------- /app/services/coupon_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/coupon_service.rb -------------------------------------------------------------------------------- /app/services/event_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/event_service.rb -------------------------------------------------------------------------------- /app/services/excel_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/excel_service.rb -------------------------------------------------------------------------------- /app/services/export_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/export_service.rb -------------------------------------------------------------------------------- /app/services/footprint_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/footprint_service.rb -------------------------------------------------------------------------------- /app/services/group_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/group_service.rb -------------------------------------------------------------------------------- /app/services/health_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/health_service.rb -------------------------------------------------------------------------------- /app/services/invoices_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/invoices_service.rb -------------------------------------------------------------------------------- /app/services/machine_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/machine_service.rb -------------------------------------------------------------------------------- /app/services/members/list_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/members/list_service.rb -------------------------------------------------------------------------------- /app/services/notification_center.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/notification_center.rb -------------------------------------------------------------------------------- /app/services/open_lab_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/open_lab_service.rb -------------------------------------------------------------------------------- /app/services/orders/order_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/orders/order_service.rb -------------------------------------------------------------------------------- /app/services/plans_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/plans_service.rb -------------------------------------------------------------------------------- /app/services/prepaid_pack_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/prepaid_pack_service.rb -------------------------------------------------------------------------------- /app/services/price_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/price_service.rb -------------------------------------------------------------------------------- /app/services/product_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/product_service.rb -------------------------------------------------------------------------------- /app/services/project_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/project_service.rb -------------------------------------------------------------------------------- /app/services/project_to_markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/project_to_markdown.rb -------------------------------------------------------------------------------- /app/services/projects_archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/projects_archive.rb -------------------------------------------------------------------------------- /app/services/recaptcha_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/recaptcha_service.rb -------------------------------------------------------------------------------- /app/services/secure_password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/secure_password.rb -------------------------------------------------------------------------------- /app/services/setting_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/setting_service.rb -------------------------------------------------------------------------------- /app/services/slots/title_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/slots/title_service.rb -------------------------------------------------------------------------------- /app/services/training_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/training_service.rb -------------------------------------------------------------------------------- /app/services/user_getter_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/user_getter_service.rb -------------------------------------------------------------------------------- /app/services/user_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/user_service.rb -------------------------------------------------------------------------------- /app/services/user_setter_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/user_setter_service.rb -------------------------------------------------------------------------------- /app/services/users_credits/manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/users_credits/manager.rb -------------------------------------------------------------------------------- /app/services/users_export_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/users_export_service.rb -------------------------------------------------------------------------------- /app/services/vat_history_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/vat_history_service.rb -------------------------------------------------------------------------------- /app/services/wallet_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/services/wallet_service.rb -------------------------------------------------------------------------------- /app/themes/casemate/style.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/themes/casemate/style.scss.erb -------------------------------------------------------------------------------- /app/uploaders/event_file_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/event_file_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/event_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/event_image_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/import_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/import_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/plan_file_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/plan_file_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/project_cao_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/project_cao_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/space_file_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/space_file_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/space_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/space_image_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/user_avatar_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/uploaders/user_avatar_uploader.rb -------------------------------------------------------------------------------- /app/validators/duration_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/validators/duration_validator.rb -------------------------------------------------------------------------------- /app/views/api/age_ranges/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @age_range, :id, :name -------------------------------------------------------------------------------- /app/views/api/categories/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @category, :id, :name -------------------------------------------------------------------------------- /app/views/api/components/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @component, :id, :name -------------------------------------------------------------------------------- /app/views/api/event_themes/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @event_theme, :id, :name -------------------------------------------------------------------------------- /app/views/api/invoices/first.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.date @first 2 | -------------------------------------------------------------------------------- /app/views/api/tags/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @tag, :id, :name -------------------------------------------------------------------------------- /app/views/api/themes/show.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.extract! @theme, :id, :name -------------------------------------------------------------------------------- /app/views/application/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/views/application/index.html.erb -------------------------------------------------------------------------------- /app/views/archive/_vat.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/views/archive/_vat.json.jbuilder -------------------------------------------------------------------------------- /app/views/social_bot/event.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/views/social_bot/event.html.erb -------------------------------------------------------------------------------- /app/views/social_bot/project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/views/social_bot/project.html.erb -------------------------------------------------------------------------------- /app/workers/accounting_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/accounting_worker.rb -------------------------------------------------------------------------------- /app/workers/archive_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/archive_worker.rb -------------------------------------------------------------------------------- /app/workers/child_age_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/child_age_worker.rb -------------------------------------------------------------------------------- /app/workers/free_disk_space_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/free_disk_space_worker.rb -------------------------------------------------------------------------------- /app/workers/invoice_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/invoice_worker.rb -------------------------------------------------------------------------------- /app/workers/members_import_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/members_import_worker.rb -------------------------------------------------------------------------------- /app/workers/openlab_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/openlab_worker.rb -------------------------------------------------------------------------------- /app/workers/statistic_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/statistic_worker.rb -------------------------------------------------------------------------------- /app/workers/stripe_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/stripe_worker.rb -------------------------------------------------------------------------------- /app/workers/users_export_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/users_export_worker.rb -------------------------------------------------------------------------------- /app/workers/version_check_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/app/workers/version_check_worker.rb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/webpacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/webpacker -------------------------------------------------------------------------------- /bin/webpacker-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/webpacker-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/database.yml.default -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require_relative './production' 4 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/activerecord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/activerecord.rb -------------------------------------------------------------------------------- /config/initializers/ancestry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/ancestry.rb -------------------------------------------------------------------------------- /config/initializers/apipie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/apipie.rb -------------------------------------------------------------------------------- /config/initializers/currency.rb: -------------------------------------------------------------------------------- 1 | CURRENCY_LOCALE = Rails.application.secrets.rails_locale 2 | -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/devise_mailer.rb -------------------------------------------------------------------------------- /config/initializers/elasticsearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/elasticsearch.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/is_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/is_number.rb -------------------------------------------------------------------------------- /config/initializers/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/locale.rb -------------------------------------------------------------------------------- /config/initializers/mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/mail.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/openlab_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/openlab_ruby.rb -------------------------------------------------------------------------------- /config/initializers/rolify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/rolify.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/silencer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/silencer.rb -------------------------------------------------------------------------------- /config/initializers/stripe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/initializers/stripe.rb -------------------------------------------------------------------------------- /config/locales/app.admin.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.de.yml -------------------------------------------------------------------------------- /config/locales/app.admin.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.en.yml -------------------------------------------------------------------------------- /config/locales/app.admin.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.es-MX.yml -------------------------------------------------------------------------------- /config/locales/app.admin.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.es.yml -------------------------------------------------------------------------------- /config/locales/app.admin.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.fr.yml -------------------------------------------------------------------------------- /config/locales/app.admin.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.it.yml -------------------------------------------------------------------------------- /config/locales/app.admin.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.no.yml -------------------------------------------------------------------------------- /config/locales/app.admin.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.pt.yml -------------------------------------------------------------------------------- /config/locales/app.admin.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.sv.yml -------------------------------------------------------------------------------- /config/locales/app.admin.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.zh.yml -------------------------------------------------------------------------------- /config/locales/app.admin.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.admin.zu.yml -------------------------------------------------------------------------------- /config/locales/app.logged.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.de.yml -------------------------------------------------------------------------------- /config/locales/app.logged.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.en.yml -------------------------------------------------------------------------------- /config/locales/app.logged.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.es-MX.yml -------------------------------------------------------------------------------- /config/locales/app.logged.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.es.yml -------------------------------------------------------------------------------- /config/locales/app.logged.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.fr.yml -------------------------------------------------------------------------------- /config/locales/app.logged.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.it.yml -------------------------------------------------------------------------------- /config/locales/app.logged.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.no.yml -------------------------------------------------------------------------------- /config/locales/app.logged.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.pt.yml -------------------------------------------------------------------------------- /config/locales/app.logged.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.sv.yml -------------------------------------------------------------------------------- /config/locales/app.logged.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.zh.yml -------------------------------------------------------------------------------- /config/locales/app.logged.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.logged.zu.yml -------------------------------------------------------------------------------- /config/locales/app.public.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.de.yml -------------------------------------------------------------------------------- /config/locales/app.public.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.en.yml -------------------------------------------------------------------------------- /config/locales/app.public.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.es-MX.yml -------------------------------------------------------------------------------- /config/locales/app.public.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.es.yml -------------------------------------------------------------------------------- /config/locales/app.public.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.fr.yml -------------------------------------------------------------------------------- /config/locales/app.public.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.it.yml -------------------------------------------------------------------------------- /config/locales/app.public.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.no.yml -------------------------------------------------------------------------------- /config/locales/app.public.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.pt.yml -------------------------------------------------------------------------------- /config/locales/app.public.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.sv.yml -------------------------------------------------------------------------------- /config/locales/app.public.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.zh.yml -------------------------------------------------------------------------------- /config/locales/app.public.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.public.zu.yml -------------------------------------------------------------------------------- /config/locales/app.shared.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.de.yml -------------------------------------------------------------------------------- /config/locales/app.shared.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.en.yml -------------------------------------------------------------------------------- /config/locales/app.shared.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.es-MX.yml -------------------------------------------------------------------------------- /config/locales/app.shared.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.es.yml -------------------------------------------------------------------------------- /config/locales/app.shared.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.fr.yml -------------------------------------------------------------------------------- /config/locales/app.shared.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.it.yml -------------------------------------------------------------------------------- /config/locales/app.shared.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.no.yml -------------------------------------------------------------------------------- /config/locales/app.shared.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.pt.yml -------------------------------------------------------------------------------- /config/locales/app.shared.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.sv.yml -------------------------------------------------------------------------------- /config/locales/app.shared.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.zh.yml -------------------------------------------------------------------------------- /config/locales/app.shared.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/app.shared.zu.yml -------------------------------------------------------------------------------- /config/locales/base.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.de.yml -------------------------------------------------------------------------------- /config/locales/base.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.en.yml -------------------------------------------------------------------------------- /config/locales/base.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.es-MX.yml -------------------------------------------------------------------------------- /config/locales/base.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.es.yml -------------------------------------------------------------------------------- /config/locales/base.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.fr.yml -------------------------------------------------------------------------------- /config/locales/base.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.it.yml -------------------------------------------------------------------------------- /config/locales/base.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.no.yml -------------------------------------------------------------------------------- /config/locales/base.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.pt.yml -------------------------------------------------------------------------------- /config/locales/base.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.sv.yml -------------------------------------------------------------------------------- /config/locales/base.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.zh.yml -------------------------------------------------------------------------------- /config/locales/base.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/base.zu.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/devise.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.de.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/devise.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.es-MX.yml -------------------------------------------------------------------------------- /config/locales/devise.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.es.yml -------------------------------------------------------------------------------- /config/locales/devise.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.fr.yml -------------------------------------------------------------------------------- /config/locales/devise.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.it.yml -------------------------------------------------------------------------------- /config/locales/devise.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.no.yml -------------------------------------------------------------------------------- /config/locales/devise.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.pt.yml -------------------------------------------------------------------------------- /config/locales/devise.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.sv.yml -------------------------------------------------------------------------------- /config/locales/devise.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.zh.yml -------------------------------------------------------------------------------- /config/locales/devise.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/devise.zu.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/es-MX.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/mails.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.de.yml -------------------------------------------------------------------------------- /config/locales/mails.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.en.yml -------------------------------------------------------------------------------- /config/locales/mails.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.es-MX.yml -------------------------------------------------------------------------------- /config/locales/mails.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.es.yml -------------------------------------------------------------------------------- /config/locales/mails.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.fr.yml -------------------------------------------------------------------------------- /config/locales/mails.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.it.yml -------------------------------------------------------------------------------- /config/locales/mails.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.no.yml -------------------------------------------------------------------------------- /config/locales/mails.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.pt.yml -------------------------------------------------------------------------------- /config/locales/mails.sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.sv.yml -------------------------------------------------------------------------------- /config/locales/mails.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.zh.yml -------------------------------------------------------------------------------- /config/locales/mails.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/mails.zu.yml -------------------------------------------------------------------------------- /config/locales/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/no.yml -------------------------------------------------------------------------------- /config/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/pt.yml -------------------------------------------------------------------------------- /config/locales/rails.de-AT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.de-AT.yml -------------------------------------------------------------------------------- /config/locales/rails.de-CH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.de-CH.yml -------------------------------------------------------------------------------- /config/locales/rails.de-DE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.de-DE.yml -------------------------------------------------------------------------------- /config/locales/rails.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.de.yml -------------------------------------------------------------------------------- /config/locales/rails.en-AU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-AU.yml -------------------------------------------------------------------------------- /config/locales/rails.en-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-CA.yml -------------------------------------------------------------------------------- /config/locales/rails.en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-GB.yml -------------------------------------------------------------------------------- /config/locales/rails.en-IE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-IE.yml -------------------------------------------------------------------------------- /config/locales/rails.en-IN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-IN.yml -------------------------------------------------------------------------------- /config/locales/rails.en-NZ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-NZ.yml -------------------------------------------------------------------------------- /config/locales/rails.en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-US.yml -------------------------------------------------------------------------------- /config/locales/rails.en-ZA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en-ZA.yml -------------------------------------------------------------------------------- /config/locales/rails.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.en.yml -------------------------------------------------------------------------------- /config/locales/rails.es-419.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-419.yml -------------------------------------------------------------------------------- /config/locales/rails.es-AR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-AR.yml -------------------------------------------------------------------------------- /config/locales/rails.es-CL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-CL.yml -------------------------------------------------------------------------------- /config/locales/rails.es-CO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-CO.yml -------------------------------------------------------------------------------- /config/locales/rails.es-CR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-CR.yml -------------------------------------------------------------------------------- /config/locales/rails.es-DO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-DO.yml -------------------------------------------------------------------------------- /config/locales/rails.es-EC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-EC.yml -------------------------------------------------------------------------------- /config/locales/rails.es-ES.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-ES.yml -------------------------------------------------------------------------------- /config/locales/rails.es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-MX.yml -------------------------------------------------------------------------------- /config/locales/rails.es-PA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-PA.yml -------------------------------------------------------------------------------- /config/locales/rails.es-PE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-PE.yml -------------------------------------------------------------------------------- /config/locales/rails.es-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-US.yml -------------------------------------------------------------------------------- /config/locales/rails.es-VE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es-VE.yml -------------------------------------------------------------------------------- /config/locales/rails.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.es.yml -------------------------------------------------------------------------------- /config/locales/rails.fr-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.fr-CA.yml -------------------------------------------------------------------------------- /config/locales/rails.fr-CH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.fr-CH.yml -------------------------------------------------------------------------------- /config/locales/rails.fr-CM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.fr-CM.yml -------------------------------------------------------------------------------- /config/locales/rails.fr-FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.fr-FR.yml -------------------------------------------------------------------------------- /config/locales/rails.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.fr.yml -------------------------------------------------------------------------------- /config/locales/rails.it-CH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.it-CH.yml -------------------------------------------------------------------------------- /config/locales/rails.it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.it.yml -------------------------------------------------------------------------------- /config/locales/rails.no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.no.yml -------------------------------------------------------------------------------- /config/locales/rails.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/rails.pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.pt.yml -------------------------------------------------------------------------------- /config/locales/rails.zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.zh.yml -------------------------------------------------------------------------------- /config/locales/rails.zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/rails.zu.yml -------------------------------------------------------------------------------- /config/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/sv.yml -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/zh.yml -------------------------------------------------------------------------------- /config/locales/zu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/locales/zu.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/schedule.yml -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/modules/hmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/hmr.js -------------------------------------------------------------------------------- /config/webpack/modules/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/html.js -------------------------------------------------------------------------------- /config/webpack/modules/html_erb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/html_erb.js -------------------------------------------------------------------------------- /config/webpack/modules/js_erb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/js_erb.js -------------------------------------------------------------------------------- /config/webpack/modules/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/sass.js -------------------------------------------------------------------------------- /config/webpack/modules/sass_erb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/sass_erb.js -------------------------------------------------------------------------------- /config/webpack/modules/svg.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | test: /\.svg$/i, 3 | type: 'asset' 4 | }; 5 | -------------------------------------------------------------------------------- /config/webpack/modules/ui-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/modules/ui-tour.js -------------------------------------------------------------------------------- /config/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpack/webpack.config.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/crowdin.yml -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/notification_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/db/seeds/notification_types.rb -------------------------------------------------------------------------------- /db/seeds/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/db/seeds/settings.rb -------------------------------------------------------------------------------- /db/seeds/statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/db/seeds/statistics.rb -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/db/structure.sql -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/architecture.md -------------------------------------------------------------------------------- /doc/class-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/class-diagram.svg -------------------------------------------------------------------------------- /doc/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/database.svg -------------------------------------------------------------------------------- /doc/development_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/development_readme.md -------------------------------------------------------------------------------- /doc/elastic_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/elastic_upgrade.md -------------------------------------------------------------------------------- /doc/elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/elasticsearch.md -------------------------------------------------------------------------------- /doc/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/environment.md -------------------------------------------------------------------------------- /doc/gem-dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/gem-dependencies.svg -------------------------------------------------------------------------------- /doc/js-modules-dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/js-modules-dependencies.svg -------------------------------------------------------------------------------- /doc/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/known-issues.md -------------------------------------------------------------------------------- /doc/open_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/open_projects.md -------------------------------------------------------------------------------- /doc/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/plugins.md -------------------------------------------------------------------------------- /doc/postgres_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/postgres_upgrade.md -------------------------------------------------------------------------------- /doc/postgresql_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/postgresql_readme.md -------------------------------------------------------------------------------- /doc/production_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/production_readme.md -------------------------------------------------------------------------------- /doc/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/proxy.md -------------------------------------------------------------------------------- /doc/sso_open_id_connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/sso_open_id_connect.md -------------------------------------------------------------------------------- /doc/sso_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/sso_saml.md -------------------------------------------------------------------------------- /doc/sso_with_github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/sso_with_github.md -------------------------------------------------------------------------------- /doc/translation_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/translation_readme.md -------------------------------------------------------------------------------- /doc/upgrade_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/upgrade_v1.md -------------------------------------------------------------------------------- /doc/virtual-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/doc/virtual-machine.md -------------------------------------------------------------------------------- /docker/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/docker/database.yml -------------------------------------------------------------------------------- /docker/development/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/docker/development/docker-compose.yml -------------------------------------------------------------------------------- /docker/development/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/docker/development/hosts -------------------------------------------------------------------------------- /docker/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/docker/supervisor.conf -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/env.example -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/database/sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/database/sequence.rb -------------------------------------------------------------------------------- /lib/fab_hub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/fab_hub.rb -------------------------------------------------------------------------------- /lib/fab_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/fab_manager.rb -------------------------------------------------------------------------------- /lib/file_size_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/file_size_validator.rb -------------------------------------------------------------------------------- /lib/integrity/archive_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/integrity/archive_helper.rb -------------------------------------------------------------------------------- /lib/integrity/checksum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/integrity/checksum.rb -------------------------------------------------------------------------------- /lib/omni_auth/data_mapping/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/omni_auth/data_mapping/base.rb -------------------------------------------------------------------------------- /lib/omni_auth/data_mapping/mapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/omni_auth/data_mapping/mapper.rb -------------------------------------------------------------------------------- /lib/omni_auth/oauth2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/omni_auth/oauth2.rb -------------------------------------------------------------------------------- /lib/omni_auth/openid_connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/omni_auth/openid_connect.rb -------------------------------------------------------------------------------- /lib/omni_auth/saml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/omni_auth/saml.rb -------------------------------------------------------------------------------- /lib/pay_zen/charge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/charge.rb -------------------------------------------------------------------------------- /lib/pay_zen/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/client.rb -------------------------------------------------------------------------------- /lib/pay_zen/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/helper.rb -------------------------------------------------------------------------------- /lib/pay_zen/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/item.rb -------------------------------------------------------------------------------- /lib/pay_zen/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/order.rb -------------------------------------------------------------------------------- /lib/pay_zen/pci/charge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/pci/charge.rb -------------------------------------------------------------------------------- /lib/pay_zen/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/service.rb -------------------------------------------------------------------------------- /lib/pay_zen/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/subscription.rb -------------------------------------------------------------------------------- /lib/pay_zen/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/token.rb -------------------------------------------------------------------------------- /lib/pay_zen/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/pay_zen/transaction.rb -------------------------------------------------------------------------------- /lib/payment/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/payment/helper.rb -------------------------------------------------------------------------------- /lib/payment/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/payment/item.rb -------------------------------------------------------------------------------- /lib/payment/item_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/payment/item_builder.rb -------------------------------------------------------------------------------- /lib/payment/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/payment/service.rb -------------------------------------------------------------------------------- /lib/plugin/instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/plugin/instance.rb -------------------------------------------------------------------------------- /lib/plugin_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/plugin_registry.rb -------------------------------------------------------------------------------- /lib/provider_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/provider_config.rb -------------------------------------------------------------------------------- /lib/sso_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/sso_logger.rb -------------------------------------------------------------------------------- /lib/stripe/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/stripe/helper.rb -------------------------------------------------------------------------------- /lib/stripe/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/stripe/item.rb -------------------------------------------------------------------------------- /lib/stripe/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/stripe/service.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/db.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/auth.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/auth.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/chain.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/chain.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/es.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/es.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/fix.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/fix.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/fix_invoices.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/fix_invoices.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/fix_references.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/fix_references.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/maintenance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/maintenance.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/openlab.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/openlab.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/payzen.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/payzen.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/setup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/setup.rake -------------------------------------------------------------------------------- /lib/tasks/fablab/stripe.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/tasks/fablab/stripe.rake -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/lib/version.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/package.json -------------------------------------------------------------------------------- /plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/postcss.config.js -------------------------------------------------------------------------------- /provision/box_setup.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/provision/box_setup.zsh -------------------------------------------------------------------------------- /provision/box_tuning.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/provision/box_tuning.zsh -------------------------------------------------------------------------------- /provision/zsh_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/provision/zsh_setup.sh -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/500.html -------------------------------------------------------------------------------- /public/about-fablab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/about-fablab.jpg -------------------------------------------------------------------------------- /public/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/default-image.png -------------------------------------------------------------------------------- /public/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/example.csv -------------------------------------------------------------------------------- /public/rank-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/rank-icon.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/cve-2021-44228.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/cve-2021-44228.sh -------------------------------------------------------------------------------- /scripts/elastic-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/elastic-upgrade.sh -------------------------------------------------------------------------------- /scripts/mount-auth-provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/mount-auth-provider.sh -------------------------------------------------------------------------------- /scripts/mount-payment-schedules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/mount-payment-schedules.sh -------------------------------------------------------------------------------- /scripts/mount-webpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/mount-webpack.sh -------------------------------------------------------------------------------- /scripts/nginx-packs-directive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/nginx-packs-directive.sh -------------------------------------------------------------------------------- /scripts/pg-analyzers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/pg-analyzers.sh -------------------------------------------------------------------------------- /scripts/postgre-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/postgre-upgrade.sh -------------------------------------------------------------------------------- /scripts/redis-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/redis-upgrade.sh -------------------------------------------------------------------------------- /scripts/rename-adminsys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/rename-adminsys.sh -------------------------------------------------------------------------------- /scripts/rename-supporting-document.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/rename-supporting-document.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/set-docker-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/set-docker-user.sh -------------------------------------------------------------------------------- /scripts/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/tests.sh -------------------------------------------------------------------------------- /scripts/translations/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/translations/download.sh -------------------------------------------------------------------------------- /scripts/translations/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/translations/upload.sh -------------------------------------------------------------------------------- /scripts/use-relative-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/scripts/use-relative-paths.sh -------------------------------------------------------------------------------- /setup/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/docker-compose.yml -------------------------------------------------------------------------------- /setup/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/elasticsearch.yml -------------------------------------------------------------------------------- /setup/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/env.example -------------------------------------------------------------------------------- /setup/letsencrypt.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/letsencrypt.service -------------------------------------------------------------------------------- /setup/letsencrypt.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/letsencrypt.timer -------------------------------------------------------------------------------- /setup/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/log4j2.properties -------------------------------------------------------------------------------- /setup/nginx.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/nginx.conf.example -------------------------------------------------------------------------------- /setup/nginx_with_ssl.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/nginx_with_ssl.conf.example -------------------------------------------------------------------------------- /setup/proxy/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/proxy/.npmrc -------------------------------------------------------------------------------- /setup/proxy/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/proxy/gitconfig -------------------------------------------------------------------------------- /setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/setup.sh -------------------------------------------------------------------------------- /setup/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/upgrade.sh -------------------------------------------------------------------------------- /setup/webroot.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/setup/webroot.ini.example -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/README.md -------------------------------------------------------------------------------- /test/fixtures/abuses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/abuses.yml -------------------------------------------------------------------------------- /test/fixtures/accounting_lines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/accounting_lines.yml -------------------------------------------------------------------------------- /test/fixtures/accounting_periods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/accounting_periods.yml -------------------------------------------------------------------------------- /test/fixtures/addresses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/addresses.yml -------------------------------------------------------------------------------- /test/fixtures/age_ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/age_ranges.yml -------------------------------------------------------------------------------- /test/fixtures/assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/assets.yml -------------------------------------------------------------------------------- /test/fixtures/auth_provider_mappings.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/auth_providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/auth_providers.yml -------------------------------------------------------------------------------- /test/fixtures/availabilities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/availabilities.yml -------------------------------------------------------------------------------- /test/fixtures/availability_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/availability_tags.yml -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/chained_elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/chained_elements.yml -------------------------------------------------------------------------------- /test/fixtures/components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/components.yml -------------------------------------------------------------------------------- /test/fixtures/coupons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/coupons.yml -------------------------------------------------------------------------------- /test/fixtures/credits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/credits.yml -------------------------------------------------------------------------------- /test/fixtures/custom_assets.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/database_providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/database_providers.yml -------------------------------------------------------------------------------- /test/fixtures/event_themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/event_themes.yml -------------------------------------------------------------------------------- /test/fixtures/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/events.yml -------------------------------------------------------------------------------- /test/fixtures/events_event_themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/events_event_themes.yml -------------------------------------------------------------------------------- /test/fixtures/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/exports.yml -------------------------------------------------------------------------------- /test/fixtures/files/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/files/document.pdf -------------------------------------------------------------------------------- /test/fixtures/files/document2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/files/document2.pdf -------------------------------------------------------------------------------- /test/fixtures/files/event/Party.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/files/event/Party.jpg -------------------------------------------------------------------------------- /test/fixtures/files/members.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/files/members.csv -------------------------------------------------------------------------------- /test/fixtures/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/groups.yml -------------------------------------------------------------------------------- /test/fixtures/history_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/history_values.yml -------------------------------------------------------------------------------- /test/fixtures/i_calendar_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/i_calendar_events.yml -------------------------------------------------------------------------------- /test/fixtures/i_calendars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/i_calendars.yml -------------------------------------------------------------------------------- /test/fixtures/imports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/imports.yml -------------------------------------------------------------------------------- /test/fixtures/invoice_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/invoice_items.yml -------------------------------------------------------------------------------- /test/fixtures/invoices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/invoices.yml -------------------------------------------------------------------------------- /test/fixtures/invoicing_profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/invoicing_profiles.yml -------------------------------------------------------------------------------- /test/fixtures/licences.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/licences.yml -------------------------------------------------------------------------------- /test/fixtures/machine_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/machine_categories.yml -------------------------------------------------------------------------------- /test/fixtures/machines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/machines.yml -------------------------------------------------------------------------------- /test/fixtures/notification_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/notification_types.yml -------------------------------------------------------------------------------- /test/fixtures/notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/notifications.yml -------------------------------------------------------------------------------- /test/fixtures/o_auth2_providers.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/offer_days.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/open_api_clients.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/open_api_clients.yml -------------------------------------------------------------------------------- /test/fixtures/order_activities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/order_activities.yml -------------------------------------------------------------------------------- /test/fixtures/order_items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/order_items.yml -------------------------------------------------------------------------------- /test/fixtures/orders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/orders.yml -------------------------------------------------------------------------------- /test/fixtures/organizations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/organizations.yml -------------------------------------------------------------------------------- /test/fixtures/payment_schedules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/payment_schedules.yml -------------------------------------------------------------------------------- /test/fixtures/plans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/plans.yml -------------------------------------------------------------------------------- /test/fixtures/prepaid_packs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/prepaid_packs.yml -------------------------------------------------------------------------------- /test/fixtures/price_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/price_categories.yml -------------------------------------------------------------------------------- /test/fixtures/prices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/prices.yml -------------------------------------------------------------------------------- /test/fixtures/product_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/product_categories.yml -------------------------------------------------------------------------------- /test/fixtures/products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/products.yml -------------------------------------------------------------------------------- /test/fixtures/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/profiles.yml -------------------------------------------------------------------------------- /test/fixtures/project_categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/project_categories.yml -------------------------------------------------------------------------------- /test/fixtures/project_steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/project_steps.yml -------------------------------------------------------------------------------- /test/fixtures/project_users.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/projects.yml -------------------------------------------------------------------------------- /test/fixtures/projects_components.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/projects_components.yml -------------------------------------------------------------------------------- /test/fixtures/projects_machines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/projects_machines.yml -------------------------------------------------------------------------------- /test/fixtures/projects_themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/projects_themes.yml -------------------------------------------------------------------------------- /test/fixtures/reservations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/reservations.yml -------------------------------------------------------------------------------- /test/fixtures/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/roles.yml -------------------------------------------------------------------------------- /test/fixtures/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/settings.yml -------------------------------------------------------------------------------- /test/fixtures/slots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/slots.yml -------------------------------------------------------------------------------- /test/fixtures/slots_reservations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/slots_reservations.yml -------------------------------------------------------------------------------- /test/fixtures/spaces.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/spaces.yml -------------------------------------------------------------------------------- /test/fixtures/statistic_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statistic_fields.yml -------------------------------------------------------------------------------- /test/fixtures/statistic_graphs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statistic_graphs.yml -------------------------------------------------------------------------------- /test/fixtures/statistic_indices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statistic_indices.yml -------------------------------------------------------------------------------- /test/fixtures/statistic_profile_trainings.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/statistic_profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statistic_profiles.yml -------------------------------------------------------------------------------- /test/fixtures/statistic_sub_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statistic_sub_types.yml -------------------------------------------------------------------------------- /test/fixtures/statistic_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statistic_types.yml -------------------------------------------------------------------------------- /test/fixtures/statuses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/statuses.yml -------------------------------------------------------------------------------- /test/fixtures/stylesheets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/stylesheets.yml -------------------------------------------------------------------------------- /test/fixtures/subscriptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/subscriptions.yml -------------------------------------------------------------------------------- /test/fixtures/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/tags.yml -------------------------------------------------------------------------------- /test/fixtures/themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/themes.yml -------------------------------------------------------------------------------- /test/fixtures/tickets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/tickets.yml -------------------------------------------------------------------------------- /test/fixtures/trainings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/trainings.yml -------------------------------------------------------------------------------- /test/fixtures/trainings_machines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/trainings_machines.yml -------------------------------------------------------------------------------- /test/fixtures/trainings_pricings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/trainings_pricings.yml -------------------------------------------------------------------------------- /test/fixtures/user_tags.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/fixtures/users_credits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/users_credits.yml -------------------------------------------------------------------------------- /test/fixtures/users_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/users_roles.yml -------------------------------------------------------------------------------- /test/fixtures/wallet_transactions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/wallet_transactions.yml -------------------------------------------------------------------------------- /test/fixtures/wallets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/fixtures/wallets.yml -------------------------------------------------------------------------------- /test/frontend/__fixtures__/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__fixtures__/groups.ts -------------------------------------------------------------------------------- /test/frontend/__fixtures__/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__fixtures__/plans.ts -------------------------------------------------------------------------------- /test/frontend/__fixtures__/spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__fixtures__/spaces.ts -------------------------------------------------------------------------------- /test/frontend/__fixtures__/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__fixtures__/users.ts -------------------------------------------------------------------------------- /test/frontend/__lib__/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__lib__/auth.ts -------------------------------------------------------------------------------- /test/frontend/__lib__/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__lib__/fixtures.ts -------------------------------------------------------------------------------- /test/frontend/__lib__/tiptap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__lib__/tiptap.ts -------------------------------------------------------------------------------- /test/frontend/__lib__/ui-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__lib__/ui-router.ts -------------------------------------------------------------------------------- /test/frontend/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /test/frontend/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /test/frontend/__setup__/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__setup__/globals.js -------------------------------------------------------------------------------- /test/frontend/__setup__/mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__setup__/mocks.js -------------------------------------------------------------------------------- /test/frontend/__setup__/rects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__setup__/rects.js -------------------------------------------------------------------------------- /test/frontend/__setup__/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/__setup__/server.js -------------------------------------------------------------------------------- /test/frontend/lib/api.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/lib/api.test.ts -------------------------------------------------------------------------------- /test/frontend/lib/deferred.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/lib/deferred.test.ts -------------------------------------------------------------------------------- /test/frontend/lib/format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/lib/format.test.ts -------------------------------------------------------------------------------- /test/frontend/lib/parsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/lib/parsing.test.ts -------------------------------------------------------------------------------- /test/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/frontend/tsconfig.json -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/archive_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/helpers/archive_helper.rb -------------------------------------------------------------------------------- /test/helpers/auth_provider_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/helpers/auth_provider_helper.rb -------------------------------------------------------------------------------- /test/helpers/invoice_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/helpers/invoice_helper.rb -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/abuses_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/abuses_test.rb -------------------------------------------------------------------------------- /test/integration/admins_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/admins_test.rb -------------------------------------------------------------------------------- /test/integration/age_ranges_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/age_ranges_test.rb -------------------------------------------------------------------------------- /test/integration/analytics_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/analytics_test.rb -------------------------------------------------------------------------------- /test/integration/categories_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/categories_test.rb -------------------------------------------------------------------------------- /test/integration/components_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/components_test.rb -------------------------------------------------------------------------------- /test/integration/event_themes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/event_themes_test.rb -------------------------------------------------------------------------------- /test/integration/groups_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/groups_test.rb -------------------------------------------------------------------------------- /test/integration/invoices/vat_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/invoices/vat_test.rb -------------------------------------------------------------------------------- /test/integration/machines_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/machines_test.rb -------------------------------------------------------------------------------- /test/integration/members/list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/members/list_test.rb -------------------------------------------------------------------------------- /test/integration/payzen_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/payzen_test.rb -------------------------------------------------------------------------------- /test/integration/products_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/products_test.rb -------------------------------------------------------------------------------- /test/integration/projects_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/projects_test.rb -------------------------------------------------------------------------------- /test/integration/rss/events_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/rss/events_test.rb -------------------------------------------------------------------------------- /test/integration/rss/projects_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/rss/projects_test.rb -------------------------------------------------------------------------------- /test/integration/settings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/settings_test.rb -------------------------------------------------------------------------------- /test/integration/spaces_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/spaces_test.rb -------------------------------------------------------------------------------- /test/integration/statuses_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/statuses_test.rb -------------------------------------------------------------------------------- /test/integration/tags_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/tags_test.rb -------------------------------------------------------------------------------- /test/integration/themes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/themes_test.rb -------------------------------------------------------------------------------- /test/integration/trainings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/trainings_test.rb -------------------------------------------------------------------------------- /test/integration/wallets_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/integration/wallets_test.rb -------------------------------------------------------------------------------- /test/lib/pay_zen/service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/lib/pay_zen/service_test.rb -------------------------------------------------------------------------------- /test/meta/i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/meta/i18n_test.rb -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/availability_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/availability_test.rb -------------------------------------------------------------------------------- /test/models/chained_element_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/chained_element_test.rb -------------------------------------------------------------------------------- /test/models/coupon_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/coupon_test.rb -------------------------------------------------------------------------------- /test/models/event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/event_test.rb -------------------------------------------------------------------------------- /test/models/export_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/export_test.rb -------------------------------------------------------------------------------- /test/models/history_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/history_value_test.rb -------------------------------------------------------------------------------- /test/models/organization_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/organization_test.rb -------------------------------------------------------------------------------- /test/models/price_category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/price_category_test.rb -------------------------------------------------------------------------------- /test/models/project_category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/project_category_test.rb -------------------------------------------------------------------------------- /test/models/project_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/project_test.rb -------------------------------------------------------------------------------- /test/models/space_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/space_test.rb -------------------------------------------------------------------------------- /test/models/ticket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/ticket_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/models/wallet_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/models/wallet_test.rb -------------------------------------------------------------------------------- /test/services/coupon_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/services/coupon_service_test.rb -------------------------------------------------------------------------------- /test/services/wallet_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/services/wallet_service_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/vendor/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sleede/fab-manager/HEAD/yarn.lock --------------------------------------------------------------------------------