├── .browserslistrc ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom_template.md │ └── feature_request.md └── workflows │ ├── automatic-release.yml │ ├── ci_backend.yml │ ├── ci_frontend_manager.yml │ ├── ci_frontend_user.yml │ ├── e2e.yml │ ├── e2e_PC_integration.yml │ ├── pr-instance-comment.yml │ ├── styles.yml │ └── trigger-release.yml ├── .gitignore ├── .gitmessage ├── .haml-lint.yml ├── .markdownlint.json ├── .mdl_style.rb ├── .mdlrc ├── .overcommit.yml ├── .prettierignore ├── .prettierrc ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .run ├── Import providers.run.xml ├── Import resources.run.xml ├── Start app.run.xml └── Start containers.run.xml ├── .scss-lint.yml ├── .tool-versions ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── VERSION ├── _config.yml ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── fonts │ │ ├── font-awesome │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ └── fa-solid-900.woff2 │ │ ├── ubuntu-bold-webfont.ttf │ │ ├── ubuntu-bolditalic-webfont.ttf │ │ ├── ubuntu-italic-webfont.ttf │ │ ├── ubuntu-license.txt │ │ ├── ubuntu-light-webfont.ttf │ │ ├── ubuntu-lightitalic-webfont.ttf │ │ ├── ubuntu-medium-webfont.ttf │ │ ├── ubuntu-mediumitalic-webfont.ttf │ │ └── ubuntu-regular-webfont.ttf │ ├── images │ │ ├── .keep │ │ ├── 404.png │ │ ├── addfirstservice.png │ │ ├── angle-down.png │ │ ├── angle-right.png │ │ ├── api_docs │ │ │ ├── data_model.png │ │ │ ├── integrations_methods.png │ │ │ ├── inter_patterns.png │ │ │ ├── oms_visibility_example.png │ │ │ ├── ordering.png │ │ │ └── project_item_workflow.png │ │ ├── arrow-up.png │ │ ├── arrows-ico.svg │ │ ├── avatar.png │ │ ├── backoffice-01.svg │ │ ├── backoffice-02.svg │ │ ├── backoffice-03.svg │ │ ├── backoffice-arrow.svg │ │ ├── backoffice-item-bg.jpg │ │ ├── bg-blue.png │ │ ├── bg-lines-small.png │ │ ├── box-outline.svg │ │ ├── bundle-pic.png │ │ ├── catalog_icon.svg │ │ ├── catalogue │ │ │ ├── about.svg │ │ │ ├── classification.svg │ │ │ └── deps_info.svg │ │ ├── catalogue_logo.svg │ │ ├── check_affiliation.svg │ │ ├── chevron-up.svg │ │ ├── close.png │ │ ├── cloud-ico.svg │ │ ├── cloud2-ico.svg │ │ ├── createfirstproject.png │ │ ├── data-ico.svg │ │ ├── empty-listy.png │ │ ├── empty-projects.svg │ │ ├── eosc-explore-logo.png │ │ ├── eosc-img.png │ │ ├── external_ordering_icon.svg │ │ ├── favicon-180x180.png │ │ ├── favicon.ico │ │ ├── federated-media-bg.jpg │ │ ├── gfx_heart.svg │ │ ├── gfx_whole_illustation_desktop.png │ │ ├── gfx_whole_illustation_phone.png │ │ ├── globe.svg │ │ ├── header-bg.png │ │ ├── help-circle.svg │ │ ├── home-bg-elements.png │ │ ├── home-bg.png │ │ ├── home-card-bg.png │ │ ├── home-icon.svg │ │ ├── ico_agricultural.png │ │ ├── ico_back.svg │ │ ├── ico_chevron_down.svg │ │ ├── ico_chevron_up.svg │ │ ├── ico_collapse.svg │ │ ├── ico_compute.png │ │ ├── ico_contact.svg │ │ ├── ico_data.png │ │ ├── ico_default.png │ │ ├── ico_engineering.png │ │ ├── ico_eosccloud_grey.svg │ │ ├── ico_expand.svg │ │ ├── ico_helpdesk.svg │ │ ├── ico_howitworks.png │ │ ├── ico_humanities.png │ │ ├── ico_initiative.png │ │ ├── ico_interdisciplinary.png │ │ ├── ico_medical.png │ │ ├── ico_message.svg │ │ ├── ico_natural.png │ │ ├── ico_networking.png │ │ ├── ico_notification.svg │ │ ├── ico_other.png │ │ ├── ico_processing.png │ │ ├── ico_projects.png │ │ ├── ico_providers.png │ │ ├── ico_ra_default.png │ │ ├── ico_security.png │ │ ├── ico_sharing.png │ │ ├── ico_social.png │ │ ├── ico_storage.png │ │ ├── ico_support.png │ │ ├── ico_testimonials.png │ │ ├── ico_training.png │ │ ├── ico_training.svg │ │ ├── ico_trash.svg │ │ ├── icon-add.svg │ │ ├── icon-alert-circle.svg │ │ ├── icon-arrow-down.svg │ │ ├── icon-arrow-right.svg │ │ ├── icon-attribution.svg │ │ ├── icon-availability.svg │ │ ├── icon-basic-details.svg │ │ ├── icon-classification.svg │ │ ├── icon-compare.svg │ │ ├── icon-contact-navy.svg │ │ ├── icon-contact.svg │ │ ├── icon-dependencies.svg │ │ ├── icon-document.svg │ │ ├── icon-edit.svg │ │ ├── icon-explore.svg │ │ ├── icon-heart-full.svg │ │ ├── icon-heart.svg │ │ ├── icon-helpdesk.svg │ │ ├── icon-horizontal.svg │ │ ├── icon-identifiers.svg │ │ ├── icon-interoperability.svg │ │ ├── icon-manage.svg │ │ ├── icon-manual.svg │ │ ├── icon-marketing.svg │ │ ├── icon-maturity.svg │ │ ├── icon-order.svg │ │ ├── icon-pencil.png │ │ ├── icon-pricing.svg │ │ ├── icon-privacy.svg │ │ ├── icon-speed.png │ │ ├── icon-statistics.svg │ │ ├── icon-tag.png │ │ ├── icon-tag.svg │ │ ├── icon-target.svg │ │ ├── icon-terms.svg │ │ ├── icon-training.svg │ │ ├── icon-trash.svg │ │ ├── icon-trending.svg │ │ ├── icon-uptime.svg │ │ ├── icon-website.svg │ │ ├── internal_ordering_icon.svg │ │ ├── landing_page │ │ │ ├── arrow-right.svg │ │ │ ├── browse-marketplace.svg │ │ │ ├── carousel │ │ │ │ ├── envri.svg │ │ │ │ ├── eosc-life.svg │ │ │ │ ├── logo-Escape_2.svg │ │ │ │ ├── panosc.svg │ │ │ │ └── sshoc-stakeholders.svg │ │ │ ├── dashboard.svg │ │ │ ├── facilities.png │ │ │ ├── hub.svg │ │ │ ├── ico-01.svg │ │ │ ├── ico-02.svg │ │ │ ├── ico-03.svg │ │ │ ├── ico-04.svg │ │ │ ├── ico-05.svg │ │ │ ├── ico-06.svg │ │ │ ├── ico-07.svg │ │ │ ├── ico-09.svg │ │ │ ├── landing-pic-01.png │ │ │ ├── landing-top-bg.jpg │ │ │ ├── media-bg.jpg │ │ │ ├── portal.svg │ │ │ ├── provider.svg │ │ │ ├── questions.svg │ │ │ └── researcher.svg │ │ ├── learn-more-box-default.png │ │ ├── lightning-ico.svg │ │ ├── link-separator-bg.png │ │ ├── logo-beyond-white.png │ │ ├── logo-bg.png │ │ ├── logo-eosc-beyond-vertical-fc.png │ │ ├── logo.png │ │ ├── main-bg-dots.png │ │ ├── main-bg.png │ │ ├── main-box-bg.png │ │ ├── main-box-separator.png │ │ ├── main-link.png │ │ ├── network-ico.svg │ │ ├── new-feature.png │ │ ├── no_paramters_image.svg │ │ ├── open-access.svg │ │ ├── openaire-explore-for-notebooks.png │ │ ├── profile-img.png │ │ ├── provider_logo.png │ │ ├── provider_logo.svg │ │ ├── refactoring_branch-box-default.png │ │ ├── research_step │ │ │ ├── ico-01.png │ │ │ ├── ico-02.png │ │ │ ├── ico-03.png │ │ │ ├── ico-04.png │ │ │ ├── ico-05.png │ │ │ ├── ico-06.png │ │ │ ├── ico-07.png │ │ │ ├── ico-08.png │ │ │ ├── ico-09.png │ │ │ ├── ico-10.png │ │ │ ├── ico-11.png │ │ │ ├── ico-12.png │ │ │ ├── ico-13.png │ │ │ ├── ico-14.png │ │ │ ├── ico-15.png │ │ │ └── ico-16.png │ │ ├── restricted.svg │ │ ├── rocket.svg │ │ ├── service-pic.png │ │ ├── service_logo.png │ │ ├── service_logo.svg │ │ ├── socials-bsky.svg │ │ ├── socials-linkedin.svg │ │ ├── socials-mail.svg │ │ ├── socials-youtube.svg │ │ ├── socials-zenodo.svg │ │ ├── t-icon.svg │ │ ├── top-line-bg.jpg │ │ ├── tree-indent.png │ │ ├── unpin.svg │ │ ├── voucher_gradient.png │ │ └── yt-icon.svg │ └── stylesheets │ │ ├── _animations.scss │ │ ├── _base.scss │ │ ├── _bootstrap-customizations.scss │ │ ├── _flash.scss │ │ ├── _fonts.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _jira_collector.scss │ │ ├── _order.scss │ │ ├── _policy-cookiebar-customizations.scss │ │ ├── _preview.scss │ │ ├── _ref_designsystem.scss │ │ ├── _ref_ds-static-layout.scss │ │ ├── _ref_mobile.scss │ │ ├── _ref_showds.scss │ │ ├── _ref_variables.scss │ │ ├── _shepherd.scss │ │ ├── _status.scss │ │ ├── _test.scss │ │ ├── _tours.scss │ │ ├── _variables.scss │ │ ├── actiontext.scss │ │ ├── admin │ │ └── _jobs.scss │ │ ├── application.scss │ │ ├── customization.scss │ │ ├── designsystem.scss │ │ ├── refactoring.scss │ │ └── tokens.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── components │ ├── application_component.rb │ ├── conversations │ │ ├── message_box_component.html.haml │ │ └── message_box_component.rb │ ├── presentable │ │ ├── description_component.html.haml │ │ ├── description_component.rb │ │ ├── details_component.html.haml │ │ ├── details_component.rb │ │ ├── header_component.html.haml │ │ ├── header_component.rb │ │ ├── links_component.html.haml │ │ ├── links_component.rb │ │ ├── links_component.yml │ │ ├── list_component.html.haml │ │ ├── list_component.rb │ │ ├── provider_info_component.html.haml │ │ ├── provider_info_component.rb │ │ ├── sidebar_component.html.haml │ │ ├── sidebar_component.rb │ │ ├── status_actions_component.html.haml │ │ └── status_actions_component.rb │ ├── services │ │ ├── information_description_component.html.haml │ │ ├── information_description_component.rb │ │ ├── inline_order_type_component.rb │ │ └── inline_order_url_component.rb │ ├── turbo_modal_component.html.haml │ └── turbo_modal_component.rb ├── controllers │ ├── admin │ │ ├── ab_tests_controller.rb │ │ ├── application_controller.rb │ │ ├── features_controller.rb │ │ ├── help_items_controller.rb │ │ ├── help_sections_controller.rb │ │ ├── helps_controller.rb │ │ ├── jobs_controller.rb │ │ ├── lead_sections_controller.rb │ │ ├── leads_controller.rb │ │ └── tour_feedbacks_controller.rb │ ├── admins_controller.rb │ ├── api │ │ ├── services_controller.rb │ │ ├── v1 │ │ │ ├── application_controller.rb │ │ │ ├── ess │ │ │ │ ├── application_controller.rb │ │ │ │ ├── bundles_controller.rb │ │ │ │ ├── catalogues_controller.rb │ │ │ │ ├── datasources_controller.rb │ │ │ │ ├── deployable_services_controller.rb │ │ │ │ ├── offers_controller.rb │ │ │ │ ├── providers_controller.rb │ │ │ │ └── services_controller.rb │ │ │ ├── omses │ │ │ │ ├── events_controller.rb │ │ │ │ ├── messages_controller.rb │ │ │ │ ├── projects │ │ │ │ │ └── project_items_controller.rb │ │ │ │ └── projects_controller.rb │ │ │ ├── omses_controller.rb │ │ │ ├── resources │ │ │ │ └── offers_controller.rb │ │ │ ├── resources_controller.rb │ │ │ ├── search │ │ │ │ ├── application_controller.rb │ │ │ │ └── services_controller.rb │ │ │ └── users_controller.rb │ │ └── webhooks │ │ │ └── jiras_controller.rb │ ├── api_docs_controller.rb │ ├── application_controller.rb │ ├── backoffice │ │ ├── application_controller.rb │ │ ├── approval_requests_controller.rb │ │ ├── catalogues │ │ │ ├── publishes_controller.rb │ │ │ └── unpublishes_controller.rb │ │ ├── catalogues_controller.rb │ │ ├── other_settings │ │ │ ├── categories_controller.rb │ │ │ ├── platforms_controller.rb │ │ │ ├── scientific_domains_controller.rb │ │ │ └── vocabularies_controller.rb │ │ ├── providers │ │ │ ├── publishes_controller.rb │ │ │ ├── steps_controller.rb │ │ │ └── unpublishes_controller.rb │ │ ├── providers_controller.rb │ │ ├── services │ │ │ ├── bundles │ │ │ │ ├── drafts_controller.rb │ │ │ │ └── publishes_controller.rb │ │ │ ├── bundles_controller.rb │ │ │ ├── drafts_controller.rb │ │ │ ├── logo_previews_controller.rb │ │ │ ├── offers │ │ │ │ ├── drafts_controller.rb │ │ │ │ ├── publishes_controller.rb │ │ │ │ └── summaries_controller.rb │ │ │ ├── offers_controller.rb │ │ │ └── publishes_controller.rb │ │ ├── services_controller.rb │ │ ├── statistics_controller.rb │ │ └── statuses │ │ │ ├── catalogues_controller.rb │ │ │ ├── providers_controller.rb │ │ │ └── services_controller.rb │ ├── backoffices_controller.rb │ ├── catalogues │ │ └── logos_controller.rb │ ├── catalogues_controller.rb │ ├── categories_controller.rb │ ├── comparisons │ │ └── services_controller.rb │ ├── comparisons_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── devise │ │ │ └── store_location.rb │ │ ├── paginable.rb │ │ ├── project │ │ │ └── authorize.rb │ │ ├── project_item │ │ │ └── authorize.rb │ │ ├── recommendation │ │ │ └── followable.rb │ │ ├── sentryable.rb │ │ ├── service │ │ │ ├── autocomplete.rb │ │ │ ├── categorable.rb │ │ │ ├── comparison.rb │ │ │ ├── monitorable.rb │ │ │ ├── recommendable.rb │ │ │ ├── searchable.rb │ │ │ └── sortable.rb │ │ ├── tourable.rb │ │ ├── turbo │ │ │ └── redirection.rb │ │ └── wizard_form_model.rb │ ├── datasources_controller.rb │ ├── deployable_services │ │ └── logos_controller.rb │ ├── deployable_services_controller.rb │ ├── designsystem_controller.rb │ ├── errors_controller.rb │ ├── executive │ │ └── application_controller.rb │ ├── favourites │ │ └── services_controller.rb │ ├── favourites_controller.rb │ ├── federation │ │ └── services_controller.rb │ ├── helps_controller.rb │ ├── home_controller.rb │ ├── pages_controller.rb │ ├── profiles_controller.rb │ ├── project_items_controller.rb │ ├── projects │ │ ├── adds_controller.rb │ │ ├── archives_controller.rb │ │ ├── conversations_controller.rb │ │ ├── research_products_controller.rb │ │ ├── services │ │ │ ├── conversations_controller.rb │ │ │ ├── opinions_controller.rb │ │ │ └── timelines_controller.rb │ │ └── services_controller.rb │ ├── projects_controller.rb │ ├── providers │ │ ├── details_controller.rb │ │ ├── logos_controller.rb │ │ └── questions_controller.rb │ ├── providers_controller.rb │ ├── reports_controller.rb │ ├── research_products_controller.rb │ ├── services │ │ ├── application_controller.rb │ │ ├── bundles_controller.rb │ │ ├── cancels_controller.rb │ │ ├── choose_offers_controller.rb │ │ ├── configurations_controller.rb │ │ ├── details_controller.rb │ │ ├── guidelines_controller.rb │ │ ├── information_controller.rb │ │ ├── logos_controller.rb │ │ ├── offers │ │ │ └── notifications_controller.rb │ │ ├── offers_controller.rb │ │ ├── opinions_controller.rb │ │ ├── ordering_configuration │ │ │ ├── application_controller.rb │ │ │ ├── bundles │ │ │ │ ├── drafts_controller.rb │ │ │ │ └── publishes_controller.rb │ │ │ ├── bundles_controller.rb │ │ │ ├── offers │ │ │ │ ├── drafts_controller.rb │ │ │ │ ├── publishes_controller.rb │ │ │ │ └── summaries_controller.rb │ │ │ └── offers_controller.rb │ │ ├── ordering_configurations_controller.rb │ │ ├── questions_controller.rb │ │ └── summaries_controller.rb │ ├── services_controller.rb │ ├── tour_feedbacks_controller.rb │ ├── tour_histories_controller.rb │ ├── user_action_controller.rb │ └── users │ │ ├── auth_mock_controller.rb │ │ └── omniauth_callbacks_controller.rb ├── helpers │ ├── ancestry_helper.rb │ ├── api_docs_helper.rb │ ├── application_helper.rb │ ├── application_record_helper.rb │ ├── attributes_helper.rb │ ├── backoffice │ │ ├── catalogues_helper.rb │ │ ├── offers_helper.rb │ │ ├── parameters_helper.rb │ │ ├── providers_helper.rb │ │ ├── services_helper.rb │ │ └── services_session_helper.rb │ ├── bundles_helper.rb │ ├── catalogues_helper.rb │ ├── categories_helper.rb │ ├── comparisons_helper.rb │ ├── confirm_helper.rb │ ├── date_helper.rb │ ├── favourite_helper.rb │ ├── federated_search_helper.rb │ ├── formats_helper.rb │ ├── forms_helper.rb │ ├── image_helper.rb │ ├── landing_page_helper.rb │ ├── lead_section_helper.rb │ ├── markdown_helper.rb │ ├── nav_helper.rb │ ├── offer_mailer_helper.rb │ ├── order_nav_helper.rb │ ├── presentable │ │ ├── details_helper.rb │ │ ├── details_style_helper.rb │ │ ├── header_helper.rb │ │ ├── links_helper.rb │ │ └── sidebar_helper.rb │ ├── presentable_helper.rb │ ├── project_items_helper.rb │ ├── scientific_domains_helper.rb │ ├── search_links_helper.rb │ ├── service_helper.rb │ ├── statistics_helper.rb │ ├── status_change_helper.rb │ ├── tour_helper.rb │ ├── url_helper.rb │ └── validation_helper.rb ├── inputs │ ├── array_input.rb │ ├── attributes_input.rb │ ├── custom_input.rb │ └── date_time_picker_input.rb ├── javascript │ ├── app │ │ ├── badge.js │ │ ├── choices.js │ │ ├── cookies_policy.js │ │ ├── index.js │ │ ├── masonry.js │ │ ├── nav.js │ │ ├── sort_filter.js │ │ ├── tabs.js │ │ ├── tours.js │ │ └── user_action.js │ ├── application.js │ ├── controllers │ │ ├── administrator_controller.js │ │ ├── application.js │ │ ├── autocomplete_controller.js │ │ ├── clearerrors_controller.js │ │ ├── clipboard_controller.js │ │ ├── comparison_controller.js │ │ ├── conversation_controller.js │ │ ├── datasource_controller.js │ │ ├── details_loader_controller.js │ │ ├── duplicate_controller.js │ │ ├── exit_controller.js │ │ ├── external_controller.js │ │ ├── favourite_controller.js │ │ ├── federation_filters_controller.js │ │ ├── filter_controller.js │ │ ├── form_controller.js │ │ ├── form_redirect_controller.js │ │ ├── home_page_controller.js │ │ ├── index.js │ │ ├── list_controller.js │ │ ├── map_controller.js │ │ ├── multicheckbox_controller.js │ │ ├── offer_controller.js │ │ ├── order_controller.js │ │ ├── ordering_controller.js │ │ ├── paragraph_controller.js │ │ ├── parameter_controller.js │ │ ├── preview_controller.js │ │ ├── project_controller.js │ │ ├── project_item_controller.js │ │ ├── quantity_price_controller.js │ │ ├── removals_controller.js │ │ ├── scroller_controller.js │ │ ├── search_controller.js │ │ ├── stars_controller.js │ │ ├── token_controller.js │ │ ├── tourfeedback_controller.js │ │ ├── tourfeedbackmodal_controller.js │ │ └── turbo_modal_controller.js │ ├── designsystem.js │ └── designsystem │ │ └── index.js ├── jobs │ ├── application_job.rb │ ├── catalogue │ │ └── pc_create_or_update_job.rb │ ├── datasource │ │ ├── delete_job.rb │ │ └── pc_create_or_update_job.rb │ ├── deployable_service │ │ ├── delete_job.rb │ │ ├── deployment_job.rb │ │ └── pc_create_or_update_job.rb │ ├── ess │ │ └── update_job.rb │ ├── jms │ │ ├── manage_message_job.rb │ │ └── publish_job.rb │ ├── matomo │ │ └── send_request_job.rb │ ├── message │ │ └── register_message_job.rb │ ├── oms │ │ └── call_trigger_job.rb │ ├── probes │ │ └── probes_job.rb │ ├── project │ │ ├── jira_update_job.rb │ │ └── project_register_job.rb │ ├── project_item │ │ ├── ready_job.rb │ │ └── register_job.rb │ ├── provider │ │ ├── delete_job.rb │ │ └── pc_create_or_update_job.rb │ ├── report │ │ └── report_create_job.rb │ ├── service │ │ ├── delete_job.rb │ │ └── pc_create_or_update_job.rb │ └── test │ │ └── thread_time_test_job.rb ├── mailers │ ├── application_mailer.rb │ ├── message_mailer.rb │ ├── offer_mailer.rb │ ├── project_item_mailer.rb │ ├── provider_mailer.rb │ └── service_mailer.rb ├── models │ ├── alternative_identifier.rb │ ├── application_record.rb │ ├── approval_request.rb │ ├── attribute.rb │ ├── attribute │ │ ├── date.rb │ │ ├── input.rb │ │ ├── multiselect.rb │ │ ├── quantity_price.rb │ │ ├── range.rb │ │ ├── range_property.rb │ │ └── select.rb │ ├── bundle.rb │ ├── bundle_category.rb │ ├── bundle_offer.rb │ ├── bundle_scientific_domain.rb │ ├── bundle_target_user.rb │ ├── bundle_vocabulary.rb │ ├── catalogue.rb │ ├── catalogue_data_administrator.rb │ ├── catalogue_scientific_domain.rb │ ├── catalogue_source.rb │ ├── catalogue_vocabulary.rb │ ├── categorization.rb │ ├── category.rb │ ├── concerns │ │ ├── .keep │ │ ├── approvable.rb │ │ ├── eventable.rb │ │ ├── importable.rb │ │ ├── logo_attachable.rb │ │ ├── messageable.rb │ │ ├── offerable.rb │ │ ├── parentable.rb │ │ ├── presentable.rb │ │ ├── propagable.rb │ │ ├── publishable.rb │ │ ├── statusable.rb │ │ └── viewable.rb │ ├── contact.rb │ ├── country.rb │ ├── customizable_project_item.rb │ ├── data_administrator.rb │ ├── datasource.rb │ ├── deployable_service.rb │ ├── deployable_service_scientific_domain.rb │ ├── deployable_service_source.rb │ ├── event.rb │ ├── filter.rb │ ├── filter │ │ ├── ancestry_multiselect.rb │ │ ├── backoffice_provider.rb │ │ ├── location.rb │ │ ├── marketplace_location.rb │ │ ├── multiselect.rb │ │ ├── order_type.rb │ │ ├── platform.rb │ │ ├── provider.rb │ │ ├── rating.rb │ │ ├── scientific_domain.rb │ │ ├── status.rb │ │ ├── tag.rb │ │ ├── target_user.rb │ │ └── upstream_source.rb │ ├── google │ │ └── analytics.rb │ ├── guideline.rb │ ├── help_item.rb │ ├── help_section.rb │ ├── home_page.rb │ ├── jira │ │ ├── checker.rb │ │ └── client.rb │ ├── lead.rb │ ├── lead_section.rb │ ├── link.rb │ ├── link │ │ ├── multimedia_url.rb │ │ ├── research_product_license_url.rb │ │ ├── research_product_metadata_license_url.rb │ │ └── use_cases_url.rb │ ├── main_contact.rb │ ├── manual_service_relationship.rb │ ├── message.rb │ ├── observed_user_offer.rb │ ├── offer.rb │ ├── offer │ │ ├── oms_params.rb │ │ └── parameters.rb │ ├── offer_category.rb │ ├── offer_vocabulary.rb │ ├── oms.rb │ ├── oms │ │ ├── authorization.rb │ │ ├── authorization │ │ │ └── basic.rb │ │ └── trigger.rb │ ├── oms_administration.rb │ ├── oms_provider.rb │ ├── parameter.rb │ ├── parameter │ │ ├── constant.rb │ │ ├── date.rb │ │ ├── input.rb │ │ ├── minmax.rb │ │ ├── multiselect.rb │ │ ├── quantity_price.rb │ │ ├── range.rb │ │ ├── select.rb │ │ └── values.rb │ ├── persistent_identity_system.rb │ ├── persistent_identity_system_vocabulary.rb │ ├── platform.rb │ ├── project.rb │ ├── project_item.rb │ ├── project_item │ │ ├── attributes.rb │ │ ├── customization.rb │ │ ├── customizations.rb │ │ ├── iid.rb │ │ ├── offer_values.rb │ │ ├── part.rb │ │ ├── project_validation.rb │ │ ├── readonly_part.rb │ │ ├── voucher_validation.rb │ │ └── wizard.rb │ ├── project_research_product.rb │ ├── project_scientific_domain.rb │ ├── provider.rb │ ├── provider │ │ └── question.rb │ ├── provider_alternative_identifier.rb │ ├── provider_catalogue.rb │ ├── provider_data_administrator.rb │ ├── provider_scientific_domain.rb │ ├── provider_source.rb │ ├── provider_vocabulary.rb │ ├── public_contact.rb │ ├── report.rb │ ├── report │ │ └── client.rb │ ├── required_service_relationship.rb │ ├── research_product.rb │ ├── scientific_domain.rb │ ├── service.rb │ ├── service │ │ ├── question.rb │ │ └── search.rb │ ├── service_alternative_identifier.rb │ ├── service_catalogue.rb │ ├── service_context.rb │ ├── service_guideline.rb │ ├── service_opinion.rb │ ├── service_provider.rb │ ├── service_related_platform.rb │ ├── service_relationship.rb │ ├── service_scientific_domain.rb │ ├── service_source.rb │ ├── service_target_user.rb │ ├── service_user_relationship.rb │ ├── service_vocabulary.rb │ ├── status.rb │ ├── target_user.rb │ ├── tour_feedback.rb │ ├── tour_history.rb │ ├── usage_report.rb │ ├── user.rb │ ├── user │ │ └── checkin.rb │ ├── user_category.rb │ ├── user_scientific_domain.rb │ ├── user_service.rb │ ├── vocabulary.rb │ └── vocabulary │ │ ├── access_mode.rb │ │ ├── access_type.rb │ │ ├── area_of_activity.rb │ │ ├── bundle_capability_of_goal.rb │ │ ├── bundle_goal.rb │ │ ├── datasource_classification.rb │ │ ├── entity_type.rb │ │ ├── entity_type_scheme.rb │ │ ├── esfri_domain.rb │ │ ├── esfri_type.rb │ │ ├── funding_body.rb │ │ ├── funding_program.rb │ │ ├── hosting_legal_entity.rb │ │ ├── jurisdiction.rb │ │ ├── legal_status.rb │ │ ├── life_cycle_status.rb │ │ ├── marketplace_location.rb │ │ ├── meril_scientific_domain.rb │ │ ├── network.rb │ │ ├── node.rb │ │ ├── provider_life_cycle_status.rb │ │ ├── research_product_access_policy.rb │ │ ├── research_product_metadata_access_policy.rb │ │ ├── service_category.rb │ │ ├── societal_grand_challenge.rb │ │ ├── structure_type.rb │ │ └── trl.rb ├── policies │ ├── admin │ │ ├── admin_policy.rb │ │ ├── help_item_policy.rb │ │ ├── help_section_policy.rb │ │ ├── lead_policy.rb │ │ └── lead_section_policy.rb │ ├── api │ │ └── v1 │ │ │ ├── ess │ │ │ ├── bundle_policy.rb │ │ │ ├── catalogue_policy.rb │ │ │ ├── datasource_policy.rb │ │ │ ├── deployable_service_policy.rb │ │ │ ├── offer_policy.rb │ │ │ ├── provider_policy.rb │ │ │ └── service_policy.rb │ │ │ ├── ess_policy.rb │ │ │ ├── event_policy.rb │ │ │ ├── message_policy.rb │ │ │ ├── offer_policy.rb │ │ │ ├── oms_policy.rb │ │ │ ├── project_item_policy.rb │ │ │ ├── project_policy.rb │ │ │ ├── search │ │ │ └── service_policy.rb │ │ │ ├── service_policy.rb │ │ │ └── user_policy.rb │ ├── application_policy.rb │ ├── backoffice │ │ ├── application_policy.rb │ │ ├── approval_request_policy.rb │ │ ├── backoffice_policy.rb │ │ ├── bundle_policy.rb │ │ ├── catalogue_policy.rb │ │ ├── category_policy.rb │ │ ├── datasource_policy.rb │ │ ├── message_policy.rb │ │ ├── offer_policy.rb │ │ ├── orderable_policy.rb │ │ ├── platform_policy.rb │ │ ├── provider_policy.rb │ │ ├── scientific_domain_policy.rb │ │ ├── service_policy.rb │ │ ├── target_user_policy.rb │ │ ├── vocabulary │ │ │ ├── access_mode_policy.rb │ │ │ ├── access_type_policy.rb │ │ │ ├── area_of_activity_policy.rb │ │ │ ├── bundle_capability_of_goal_policy.rb │ │ │ ├── bundle_goal_policy.rb │ │ │ ├── datasource_classification_policy.rb │ │ │ ├── entity_type_policy.rb │ │ │ ├── entity_type_scheme_policy.rb │ │ │ ├── esfri_domain_policy.rb │ │ │ ├── esfri_type_policy.rb │ │ │ ├── funding_body_policy.rb │ │ │ ├── funding_program_policy.rb │ │ │ ├── hosting_legal_entity_policy.rb │ │ │ ├── jurisdiction_policy.rb │ │ │ ├── legal_status_policy.rb │ │ │ ├── life_cycle_status_policy.rb │ │ │ ├── marketplace_location_policy.rb │ │ │ ├── meril_scientific_domain_policy.rb │ │ │ ├── network_policy.rb │ │ │ ├── node_policy.rb │ │ │ ├── provider_life_cycle_status_policy.rb │ │ │ ├── research_product_access_policy_policy.rb │ │ │ ├── service_category_policy.rb │ │ │ ├── societal_grand_challenge_policy.rb │ │ │ ├── structure_type_policy.rb │ │ │ └── trl_policy.rb │ │ └── vocabulary_policy.rb │ ├── bundle_policy.rb │ ├── catalogue_policy.rb │ ├── customizable_project_item_policy.rb │ ├── datasource_policy.rb │ ├── deployable_service_policy.rb │ ├── executive │ │ └── executive_policy.rb │ ├── help_section_policy.rb │ ├── lead_section_policy.rb │ ├── message_policy.rb │ ├── offer_policy.rb │ ├── ordering_configuration │ │ ├── bundle_policy.rb │ │ ├── offer_policy.rb │ │ └── service_context_policy.rb │ ├── project_item_policy.rb │ ├── project_policy.rb │ ├── project_research_product_policy.rb │ ├── provider_policy.rb │ ├── research_product_policy.rb │ ├── service_context_policy.rb │ ├── service_opinion_policy.rb │ ├── service_policy.rb │ └── user_policy.rb ├── serializers │ ├── api │ │ └── v1 │ │ │ ├── bundle_serializer.rb │ │ │ ├── catalogue_serializer.rb │ │ │ ├── event_serializer.rb │ │ │ ├── message_serializer.rb │ │ │ ├── offer_serializer.rb │ │ │ ├── offering │ │ │ └── oms_serializer.rb │ │ │ ├── ordering │ │ │ └── oms_serializer.rb │ │ │ ├── project_item_serializer.rb │ │ │ ├── project_serializer.rb │ │ │ ├── provider_serializer.rb │ │ │ ├── search │ │ │ ├── filter_serializer.rb │ │ │ ├── offer_serializer.rb │ │ │ ├── provider_serializer.rb │ │ │ └── service_serializer.rb │ │ │ ├── service_serializer.rb │ │ │ └── user_serializer.rb │ ├── application_serializer.rb │ ├── ess │ │ ├── bundle_serializer.rb │ │ ├── catalogue_serializer.rb │ │ ├── datasource_serializer.rb │ │ ├── deployable_service_serializer.rb │ │ ├── offer_serializer.rb │ │ ├── provider_serializer.rb │ │ └── service_serializer.rb │ ├── recommender │ │ ├── category_serializer.rb │ │ ├── datasource_serializer.rb │ │ ├── deployable_service_serializer.rb │ │ ├── platform_serializer.rb │ │ ├── project_serializer.rb │ │ ├── provider_serializer.rb │ │ ├── scientific_domain_serializer.rb │ │ ├── service_serializer.rb │ │ ├── target_user_serializer.rb │ │ ├── user_serializer.rb │ │ ├── vocabulary │ │ │ ├── access_mode_serializer.rb │ │ │ ├── access_type_serializer.rb │ │ │ ├── life_cycle_status_serializer.rb │ │ │ ├── marketplace_location_serializer.rb │ │ │ └── trl_serializer.rb │ │ └── vocabulary_serializer.rb │ └── reports_serializer.rb ├── services │ ├── analytics │ │ ├── page_views_and_redirects.rb │ │ └── total_services_views.rb │ ├── application_service.rb │ ├── bundle │ │ ├── application_service.rb │ │ ├── create.rb │ │ ├── destroy.rb │ │ ├── draft.rb │ │ ├── publish.rb │ │ ├── unpublish.rb │ │ └── update.rb │ ├── catalogue │ │ ├── application_service.rb │ │ ├── create.rb │ │ ├── delete.rb │ │ ├── draft.rb │ │ ├── pc_create_or_update.rb │ │ ├── publish.rb │ │ ├── suspend.rb │ │ ├── unpublish.rb │ │ └── update.rb │ ├── datasource │ │ ├── delete.rb │ │ └── pc_create_or_update.rb │ ├── datasource_source │ │ └── create.rb │ ├── deployable_service │ │ ├── application_service.rb │ │ ├── create.rb │ │ ├── create_default_offer.rb │ │ ├── delete.rb │ │ ├── jupyter_hub_parameter_generator.rb │ │ ├── pc_create_or_update.rb │ │ ├── tosca_template_filler.rb │ │ └── update.rb │ ├── ess │ │ ├── add.rb │ │ ├── delete.rb │ │ └── update.rb │ ├── event │ │ └── call_triggers.rb │ ├── importers │ │ ├── catalogue.rb │ │ ├── datasource.rb │ │ ├── deployable_service.rb │ │ ├── logo.rb │ │ ├── provider.rb │ │ ├── request.rb │ │ ├── service.rb │ │ ├── token.rb │ │ └── vocabulary.rb │ ├── infrastructure_manager │ │ └── client.rb │ ├── jira │ │ ├── comment_activity.rb │ │ └── issue_updated.rb │ ├── jms │ │ ├── do_publish.rb │ │ ├── manage_message.rb │ │ ├── publish.rb │ │ └── publisher.rb │ ├── matomo │ │ └── create_event.rb │ ├── message │ │ ├── create.rb │ │ └── register_message.rb │ ├── monitoring_data │ │ └── request.rb │ ├── offer │ │ ├── application_service.rb │ │ ├── create.rb │ │ ├── create_as_draft.rb │ │ ├── delete.rb │ │ ├── destroy.rb │ │ ├── draft.rb │ │ ├── mailer │ │ │ ├── bundled.rb │ │ │ └── unbundled.rb │ │ ├── publish.rb │ │ ├── unpublish.rb │ │ ├── update.rb │ │ └── update_as_draft.rb │ ├── probes │ │ └── create.rb │ ├── profile │ │ ├── destroy.rb │ │ └── update.rb │ ├── project │ │ ├── archive.rb │ │ ├── create.rb │ │ ├── destroy.rb │ │ ├── jira_update.rb │ │ ├── register.rb │ │ └── update.rb │ ├── project_item │ │ ├── create.rb │ │ ├── on_created │ │ │ ├── publish_addition.rb │ │ │ └── publish_coexistence.rb │ │ ├── on_status_type_updated.rb │ │ ├── ready.rb │ │ └── register.rb │ ├── provider │ │ ├── application_service.rb │ │ ├── create.rb │ │ ├── delete.rb │ │ ├── draft.rb │ │ ├── pc_create_or_update.rb │ │ ├── publish.rb │ │ ├── question │ │ │ └── deliver.rb │ │ ├── suspend.rb │ │ ├── unpublish.rb │ │ └── update.rb │ ├── recommender │ │ └── simple_recommender.rb │ ├── report │ │ ├── create.rb │ │ └── register.rb │ ├── service │ │ ├── application_service.rb │ │ ├── create.rb │ │ ├── delete.rb │ │ ├── destroy.rb │ │ ├── mailer │ │ │ └── send_to_subscribers.rb │ │ ├── pc_create_or_update.rb │ │ ├── publish.rb │ │ ├── question │ │ │ └── deliver.rb │ │ ├── suspend.rb │ │ ├── unpublish.rb │ │ └── update.rb │ ├── service_opinion │ │ ├── create.rb │ │ └── update_service.rb │ ├── service_source │ │ └── create.rb │ ├── tour_history │ │ └── create.rb │ └── trigger │ │ └── call.rb ├── types │ └── array_type.rb ├── validators │ ├── array_validator.rb │ ├── attribute_id_unique_validator.rb │ ├── mp_url_validator.rb │ └── multiselect_choices_validator.rb └── views │ ├── active_storage │ └── blobs │ │ └── _blob.html.erb │ ├── admin │ ├── features │ │ └── show.html.haml │ ├── help_items │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── help_sections │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── helps │ │ ├── _item.html.haml │ │ ├── _section.html.haml │ │ ├── _toc.html.haml │ │ └── show.html.haml │ ├── jobs │ │ └── index.html.haml │ ├── lead_sections │ │ ├── _form.html.haml │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── leads │ │ ├── _form.html.haml │ │ ├── _item.html.haml │ │ ├── _section.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ └── new.html.haml │ └── tour_feedbacks │ │ ├── _rating.html.haml │ │ └── index.html.haml │ ├── admins │ └── show.html.haml │ ├── api_docs │ ├── _token_wrapper.html.haml │ ├── create.turbo_stream.haml │ ├── show.html.haml │ └── subsections │ │ ├── _access_model.html.haml │ │ ├── _basic_information.html.haml │ │ ├── _integration_methods.html.haml │ │ ├── _introduction.html.haml │ │ ├── _oms_configuration.html.haml │ │ └── _project_item_workflows.html.haml │ ├── attributes │ ├── _default.html.haml │ ├── _index.html.haml │ └── _multiselect.html.haml │ ├── backoffice │ ├── approval_requests │ │ ├── _approval.html.haml │ │ ├── _index.html.haml │ │ ├── _message.html.haml │ │ ├── _messages.html.haml │ │ ├── _show.html.haml │ │ ├── edit.turbo_stream.haml │ │ ├── index.html.haml │ │ ├── show.html.haml │ │ └── update.turbo_stream.haml │ ├── catalogues │ │ ├── _catalogue.html.haml │ │ ├── _data_administrator_fields.html.haml │ │ ├── _form.html.haml │ │ ├── destroy.turbo_stream.haml │ │ ├── edit.html.haml │ │ ├── form │ │ │ ├── _admins.html.haml │ │ │ ├── _basic.html.haml │ │ │ ├── _classification.html.haml │ │ │ ├── _contact.html.haml │ │ │ ├── _dependencies.html.haml │ │ │ ├── _location.html.haml │ │ │ ├── _marketing.html.haml │ │ │ ├── _menu_panel.html.haml │ │ │ └── _other.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── publishes │ │ │ └── create.turbo_stream.haml │ │ ├── show.html.haml │ │ └── unpublishes │ │ │ └── create.turbo_stream.haml │ ├── common_parts │ │ └── form │ │ │ ├── _alternative_identifier_fields.html.haml │ │ │ ├── _link_fields.html.haml │ │ │ ├── _persistent_identity_system_fields.html.haml │ │ │ ├── _public_contact_fields.html.haml │ │ │ └── _status_actions.html.haml │ ├── other_settings │ │ ├── categories │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── nav │ │ │ │ └── _category.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ ├── platforms │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ ├── scientific_domains │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ │ └── vocabularies │ │ │ ├── _form.html.haml │ │ │ ├── _nav.html.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── show.html.haml │ ├── providers │ │ ├── _actions.html.haml │ │ ├── _data_administrator_fields.html.haml │ │ ├── _form.html.haml │ │ ├── _more_information.html.haml │ │ ├── _provider.html.haml │ │ ├── _provider_prompt.html.haml │ │ ├── _tabs.html.haml │ │ ├── destroy.turbo_stream.haml │ │ ├── edit.html.haml │ │ ├── form │ │ │ ├── _admins.html.haml │ │ │ ├── _basic.html.haml │ │ │ ├── _classification.html.haml │ │ │ ├── _contacts.html.haml │ │ │ ├── _dependencies.html.haml │ │ │ ├── _legal_status.html.haml │ │ │ ├── _location.html.haml │ │ │ ├── _managers.html.haml │ │ │ ├── _maturity.html.haml │ │ │ ├── _other.html.haml │ │ │ ├── _profile.html.haml │ │ │ └── _tabs.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── publishes │ │ │ └── create.turbo_stream.haml │ │ ├── show.html.haml │ │ ├── steps │ │ │ ├── _buttons.html.haml │ │ │ ├── _contacts.html.haml │ │ │ ├── _location.html.haml │ │ │ ├── _managers.html.haml │ │ │ ├── _profile.html.haml │ │ │ ├── _simple_navbar.html.haml │ │ │ ├── _summary.html.haml │ │ │ ├── _summary_contact_section.html.haml │ │ │ ├── _summary_manager_section.html.haml │ │ │ └── show.html.haml │ │ ├── tabs │ │ │ ├── _classification.html.haml │ │ │ ├── _contacts.html.haml │ │ │ ├── _dependencies.html.haml │ │ │ ├── _location.html.haml │ │ │ ├── _managers.haml │ │ │ ├── _marketing.html.haml │ │ │ ├── _maturity.html.haml │ │ │ ├── _other.html.haml │ │ │ ├── _profile.html.haml │ │ │ └── _wrapper.html.haml │ │ ├── unpublishes │ │ │ └── create.turbo_stream.haml │ │ └── update.turbo_stream.haml │ ├── services │ │ ├── _blank_prompt.html.haml │ │ ├── _form.html.haml │ │ ├── _search.html.haml │ │ ├── _service.html.haml │ │ ├── _wrapper.html.haml │ │ ├── bundles │ │ │ ├── _form.html.haml │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── edit.html.haml │ │ ├── form │ │ │ ├── _attribution.html.haml │ │ │ ├── _availability.html.haml │ │ │ ├── _basic.html.haml │ │ │ ├── _classification.html.haml │ │ │ ├── _contact.html.haml │ │ │ ├── _datasource_content.html.haml │ │ │ ├── _datasource_policies.html.haml │ │ │ ├── _dependencies.html.haml │ │ │ ├── _financial.html.haml │ │ │ ├── _location.html.haml │ │ │ ├── _management.html.haml │ │ │ ├── _marketing.html.haml │ │ │ ├── _maturity.html.haml │ │ │ ├── _menu_panel.html.haml │ │ │ ├── _order.html.haml │ │ │ ├── _other.html.haml │ │ │ ├── _research_product_metadata.html.haml │ │ │ └── _research_product_policies.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── offers │ │ │ ├── _duplicate_modal.html.haml │ │ │ ├── _exit_modal.html.haml │ │ │ ├── _form.html.haml │ │ │ ├── _one_offer_edit_form.html.haml │ │ │ ├── _primary_oms_form.haml │ │ │ ├── edit.html.haml │ │ │ ├── index.html.haml │ │ │ ├── new.html.haml │ │ │ └── steps │ │ │ │ ├── _description.html.haml │ │ │ │ ├── _offer_parameters.html.haml │ │ │ │ ├── _offer_type.html.haml │ │ │ │ ├── _order_parameters.html.haml │ │ │ │ └── _summary.html.haml │ │ ├── preview.html.haml │ │ └── show.html.haml │ ├── statistics │ │ ├── _statistic.html.haml │ │ └── index.html.haml │ └── statuses │ │ ├── _form.html.haml │ │ ├── catalogues │ │ └── create.turbo_stream.haml │ │ ├── providers │ │ └── create.turbo_stream.haml │ │ └── services │ │ └── create.turbo_stream.html.haml │ ├── backoffices │ └── show.html.haml │ ├── catalogues │ ├── index.html.haml │ └── show.html.haml │ ├── common_parts │ ├── _close_button.html.haml │ ├── _project_browser.haml │ ├── _project_browser_pin.haml │ ├── _project_select.html.haml │ ├── _research_product_table.html.haml │ ├── _show_more_link.html.haml │ └── modals │ │ └── _become_provider_modal.html.haml │ ├── comparisons │ ├── _bar.html.haml │ ├── _service.html.haml │ └── show.html.haml │ ├── components │ ├── presentable │ │ ├── _ask_question.html.haml │ │ ├── _explore_links.html.haml │ │ ├── _sidebar.html.haml │ │ ├── _updates.html.haml │ │ ├── details_component │ │ │ ├── _analytics.html.haml │ │ │ ├── _array.html.haml │ │ │ ├── _classification.html.haml │ │ │ ├── _links.html.haml │ │ │ ├── _list.html.haml │ │ │ └── _object.html.haml │ │ ├── header_component │ │ │ ├── _backoffice_datasource_buttons.html.haml │ │ │ ├── _backoffice_provider_buttons.html.haml │ │ │ ├── _backoffice_service_buttons.html.haml │ │ │ ├── _badges.html.haml │ │ │ ├── _categorization.html.haml │ │ │ ├── _datasource_buttons.html.haml │ │ │ ├── _datasource_drop_down_menu.html.haml │ │ │ ├── _node_info.html.haml │ │ │ ├── _order_buttons.html.haml │ │ │ ├── _ordering_configuration_buttons.html.haml │ │ │ ├── _provider_buttons.html.haml │ │ │ ├── _provider_drop_down_menu.html.haml │ │ │ └── _service_drop_down_menu.html.haml │ │ ├── links_component │ │ │ ├── _links.html.haml │ │ │ └── _list.html.haml │ │ ├── list_component │ │ │ ├── _item_details.html.haml │ │ │ ├── _item_menu.html.haml │ │ │ ├── _list_header.html.haml │ │ │ ├── _list_item.html.haml │ │ │ └── _selected_menu.html.haml │ │ └── sidebar_component │ │ │ ├── _array.html.haml │ │ │ ├── _classification.html.haml │ │ │ ├── _date.html.haml │ │ │ ├── _filter.html.haml │ │ │ ├── _links.html.haml │ │ │ ├── _map.html.haml │ │ │ ├── _monitoring.html.haml │ │ │ ├── _object.html.haml │ │ │ ├── _plain_text.html.haml │ │ │ ├── _text.html.haml │ │ │ └── _urls.html.haml │ └── services │ │ └── information_description_component │ │ ├── _external.html.haml │ │ ├── _fully_open_access.html.haml │ │ ├── _open_access.html.haml │ │ ├── _order_required.html.haml │ │ └── _other.html.haml │ ├── deployable_services │ ├── index.html.haml │ └── show.html.haml │ ├── designsystem │ └── index.html.haml │ ├── errors │ ├── internal_server_error.html.haml │ ├── not_found.html.haml │ └── unprocessable.html.haml │ ├── favourites │ ├── _empty_box.html.haml │ ├── _service.html.haml │ ├── _service_details.html.haml │ └── index.html.haml │ ├── federation │ ├── _filters.html.haml │ ├── filters │ │ ├── _multiselect.html.haml │ │ ├── _multiselect_level.html.haml │ │ ├── _select.html.haml │ │ └── _wrapper.html.haml │ └── services │ │ ├── _federation_banner.html.haml │ │ ├── _pagination.html.haml │ │ ├── _service.html.haml │ │ └── index.html.haml │ ├── helps │ ├── _item.html.haml │ ├── _section.html.haml │ ├── _toc.html.haml │ └── show.html.haml │ ├── home │ ├── _carousel-card.html.haml │ ├── _communities.html.haml │ ├── _info.html.haml │ ├── _opinions.html.haml │ ├── _products.html.haml │ ├── _services.html.haml │ ├── communities │ │ └── _card.html.haml │ ├── index.html.haml │ ├── products │ │ └── _cards.html.haml │ ├── providers │ │ └── _card.html.haml │ └── service │ │ └── _card.html.haml │ ├── layouts │ ├── _badge.html.haml │ ├── _breadcrumb.html.haml │ ├── _confirm_modal.html.haml │ ├── _eosc_commons_footer.haml │ ├── _flash.html.haml │ ├── _footer.html.haml │ ├── _google_analytics.html.haml │ ├── _head.html.haml │ ├── _hidden_fields.html.haml │ ├── _hotjar_trackingcode.html.haml │ ├── _jira_collector.html.haml │ ├── _matomo.html.haml │ ├── _message.html.haml │ ├── _meta_tags.html.haml │ ├── _navbar.html.haml │ ├── _placeholder.html.haml │ ├── _popup.html.haml │ ├── _profile_manipulation_body.html.haml │ ├── _recommendation.html.haml │ ├── _report.html.haml │ ├── _sections.html.haml │ ├── _tour.erb │ ├── _version.html.haml │ ├── _welcome_modal.html.haml │ ├── admin.html.haml │ ├── admin │ │ └── _navbar.html.haml │ ├── application.html.haml │ ├── backoffice.html.haml │ ├── backoffice │ │ ├── _navbar.html.haml │ │ ├── _other_settings_navbar.html.haml │ │ └── _other_settings_wrapper.html.haml │ ├── clear.html.haml │ ├── common_parts │ │ └── services │ │ │ ├── _bundle.html.haml │ │ │ ├── _bundle_box.html.haml │ │ │ ├── _default_parameters.html.haml │ │ │ ├── _new_bundle.html.haml │ │ │ ├── _new_offer.html.haml │ │ │ ├── _offer.html.haml │ │ │ ├── _offers.html.haml │ │ │ ├── _order_type_label.html.haml │ │ │ └── _parameters.html.haml │ ├── designsystem.html.haml │ ├── executive.html.haml │ ├── executive │ │ └── _navbar.html.haml │ ├── mailer.html.haml │ ├── mailer.text.haml │ ├── navbar │ │ └── _provider_panel.html.haml │ ├── order.html.haml │ ├── order │ │ ├── _nav.html.haml │ │ └── _submit_button.html.haml │ ├── ordering_configuration.html.haml │ ├── ordering_configuration │ │ └── _navbar.html.haml │ ├── show_bottombar.js.erb │ ├── show_tour_feedback.js.erb │ └── tours │ │ ├── _comment.html.haml │ │ ├── _feedback_modal.html.haml │ │ ├── _modal_content.html.haml │ │ └── _rating.html.haml │ ├── leads │ ├── _error.html.haml │ ├── _section.html.haml │ ├── learn_more │ │ └── _card.html.haml │ └── use_case │ │ └── _card.html.haml │ ├── message_mailer │ ├── message_edited.html.haml │ ├── message_edited.text.haml │ ├── project_item_new_message.html.haml │ ├── project_item_new_message.text.haml │ ├── project_new_message.html.haml │ └── project_new_message.text.haml │ ├── messages │ ├── _message.html.haml │ └── _messages.html.haml │ ├── offer_mailer │ ├── offer_available.html.haml │ ├── offer_available.text.haml │ ├── offer_bundled.html.haml │ ├── offer_bundled.text.haml │ ├── offer_expired.html.haml │ ├── offer_expired.text.haml │ ├── offer_unbundled.html.haml │ └── offer_unbundled.text.haml │ ├── pages │ ├── _card.html.haml │ ├── _community_card.html.haml │ ├── _discover_communities.html.haml │ ├── _solutions_box_link.html.haml │ ├── about.html.haml │ ├── about_projects.html.haml │ ├── communities.html.haml │ ├── landing_page.html.haml │ └── target_users.html.haml │ ├── parameters │ ├── _parameters_button.html.haml │ ├── _template.html.haml │ └── template │ │ ├── _attribute.html.haml │ │ ├── _date.html.haml │ │ ├── _input.html.haml │ │ ├── _multiselect.html.haml │ │ ├── _quantity_price.html.haml │ │ ├── _range.html.haml │ │ └── _select.html.haml │ ├── profiles │ ├── _basic_information.html.haml │ ├── _form.html.haml │ ├── edit.html.haml │ └── show.html.haml │ ├── project_item_mailer │ ├── activate_message.html.haml │ ├── activate_message.text.haml │ ├── added_to_project.html.haml │ ├── added_to_project.text.haml │ ├── aod_accepted.html.haml │ ├── aod_accepted.text.haml │ ├── aod_voucher_accepted.html.haml │ ├── aod_voucher_accepted.text.haml │ ├── aod_voucher_rejected.html.haml │ ├── aod_voucher_rejected.text.haml │ ├── approved.html.haml │ ├── approved.text.haml │ ├── closed.html.haml │ ├── closed.text.haml │ ├── created.html.haml │ ├── created.text.haml │ ├── rating_service.html.haml │ ├── rating_service.text.haml │ ├── ready_to_use.html.haml │ ├── ready_to_use.text.haml │ ├── rejected.html.haml │ ├── rejected.text.haml │ ├── waiting_for_response.html.haml │ └── waiting_for_response.text.haml │ ├── projects │ ├── _customer_typology_fields.html.haml │ ├── _details.html.haml │ ├── _empty_project.html.haml │ ├── _form.html.haml │ ├── _layout.html.haml │ ├── _project_description.html.haml │ ├── _project_layout.html.haml │ ├── _project_option.haml │ ├── _research_project_layout.html.haml │ ├── conversations │ │ └── show.html.haml │ ├── create.turbo_stream.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── nav │ │ └── _projects.html.haml │ ├── new.html.haml │ ├── research_products │ │ ├── _research_product_table.html.haml │ │ └── show.html.haml │ ├── services │ │ ├── _details.html.haml │ │ ├── _layout.html.haml │ │ ├── _project_item.html.haml │ │ ├── _rating.html.haml │ │ ├── _research_product.html.haml │ │ ├── _voucher.html.haml │ │ ├── conversations │ │ │ └── show.html.haml │ │ ├── index.html.haml │ │ ├── opinions │ │ │ ├── _stars.html.haml │ │ │ ├── _stars_template.html.haml │ │ │ └── new.haml │ │ ├── show.html.haml │ │ └── timelines │ │ │ └── show.html.haml │ └── show.html.haml │ ├── provider_mailer │ ├── new_question.html.haml │ └── new_question.text.haml │ ├── providers │ ├── _coverage.html.haml │ ├── _related.html.haml │ ├── _service_box.html.haml │ ├── _tabs.haml │ ├── details │ │ └── index.html.haml │ ├── index.html.haml │ ├── questions │ │ ├── _form.html.haml │ │ ├── create.turbo_stream.haml │ │ └── new.html.haml │ └── show.html.haml │ ├── reports │ └── _form.html.haml │ ├── research_products │ └── new.html.haml │ ├── service_mailer │ ├── new_question.html.haml │ ├── new_question.text.haml │ ├── new_service.html.haml │ └── new_service.text.haml │ ├── service_opinions │ └── _service_opinion.html.haml │ ├── services │ ├── _active_filters.html.haml │ ├── _bundle.html.haml │ ├── _bundle_box.html.haml │ ├── _bundled_offer.html.haml │ ├── _errors.html.haml │ ├── _filters.html.haml │ ├── _header.html.haml │ ├── _index.html.haml │ ├── _notebook_eosc_explore.html.haml │ ├── _offer.html.haml │ ├── _offers.html.haml │ ├── _offers_box.html.haml │ ├── _opinions.html.haml │ ├── _order.html.haml │ ├── _paginate.haml │ ├── _paginate_simple.haml │ ├── _pagination.html.haml │ ├── _recommendation_panel_v1.html.haml │ ├── _recommendation_v1.html.haml │ ├── _related.html.haml │ ├── _search.html.haml │ ├── _service.html.haml │ ├── _service_box.html.haml │ ├── _service_details.html.haml │ ├── _submit_form_button.html.haml │ ├── _tabs.haml │ ├── _wrapper.html.haml │ ├── autocomplete │ │ ├── _datasource_item.html.haml │ │ ├── _offer_item.html.haml │ │ ├── _provider_item.html.haml │ │ ├── _service_item.html.haml │ │ └── list.html.haml │ ├── bundles │ │ ├── _description.html.haml │ │ ├── _detail.html.haml │ │ ├── _offer.html.haml │ │ └── show.html.haml │ ├── choose_offers │ │ ├── _bundle_box.html.haml │ │ ├── _bundle_description.html.haml │ │ ├── _bundle_links.html.haml │ │ ├── _bundle_parameters.html.haml │ │ ├── _offer.html.haml │ │ └── show.html.haml │ ├── configurations │ │ ├── _attributes.html.haml │ │ ├── _bundled_offers.html.haml │ │ ├── _voucher.html.haml │ │ ├── attributes │ │ │ ├── _attribute.html.haml │ │ │ ├── _date.html.haml │ │ │ ├── _input.html.haml │ │ │ ├── _multiselect.html.haml │ │ │ ├── _quantity_price.html.haml │ │ │ ├── _range.html.haml │ │ │ └── _select.html.haml │ │ └── show.html.haml │ ├── details │ │ └── index.html.haml │ ├── filters │ │ ├── _multiselect.html.haml │ │ ├── _multiselect_level.html.haml │ │ ├── _select.html.haml │ │ └── _wrapper.html.haml │ ├── guidelines │ │ └── index.html.haml │ ├── index.html.haml │ ├── information │ │ ├── _bundle.html.haml │ │ └── show.html.haml │ ├── nav │ │ ├── _categories.html.haml │ │ └── _category.html.haml │ ├── offers │ │ ├── _description.html.haml │ │ ├── _parameters.html.haml │ │ ├── index.html.haml │ │ └── notifications │ │ │ ├── _disable_notification.html.haml │ │ │ ├── _enable_notification.html.haml │ │ │ ├── create.turbo_stream.haml │ │ │ └── destroy.turbo_stream.haml │ ├── opinions │ │ └── index.html.haml │ ├── ordering_configuration │ │ ├── bundles │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ └── offers │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ ├── ordering_configurations │ │ ├── _top.html.haml │ │ └── show.html.haml │ ├── questions │ │ ├── _form.html.haml │ │ ├── create.turbo_stream.haml │ │ └── new.html.haml │ ├── show.html.haml │ └── summaries │ │ ├── _bundle_technical.html.haml │ │ ├── _technical_configuration.html.haml │ │ └── show.html.haml │ ├── statuses │ ├── _status.html.haml │ └── _statuses.html.haml │ └── taggable │ └── _details_section.html.haml ├── babel.config.js ├── bin ├── bundle ├── dev ├── importmap ├── jms-subscriber ├── rails ├── rake ├── rspec ├── server ├── setup ├── spring └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── breadcrumbs │ ├── admin.rb │ ├── backoffice.rb │ └── marketplace.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── eosc_explore_banner.yml ├── esbuild.config.js ├── ess_update.yml ├── initializers │ ├── act_as_taggable_on.rb │ ├── active_job.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── constants.rb │ ├── content_security_policy.rb │ ├── cookie_rotator.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── custom_serializers.rb │ ├── devise.rb │ ├── fast_gettext.rb │ ├── filter_parameter_logging.rb │ ├── friendly_id.rb │ ├── httpclient_patch.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── pagy.rb │ ├── permissions_policy.rb │ ├── recaptcha.rb │ ├── rswag_api.rb │ ├── rswag_ui.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── simple_form_validation.rb │ ├── simple_token_authentication.rb │ ├── tours.rb │ ├── types.rb │ └── wrap_parameters.rb ├── jira.yml ├── locales │ ├── devise.en.yml │ ├── en.yml │ ├── pundit.en.yml │ ├── simple_form.en.yml │ ├── tours.en.yml │ ├── views.yml │ └── views │ │ ├── admin │ │ └── en.yml │ │ ├── backoffice │ │ └── en.yml │ │ ├── components │ │ └── en.yml │ │ ├── home │ │ └── en.yml │ │ ├── layouts │ │ └── en.yml │ │ ├── offers │ │ └── en.yml │ │ ├── pages │ │ └── en.yml │ │ ├── parameters │ │ └── template.en.yml │ │ ├── project_items │ │ └── en.yml │ │ └── projects │ │ └── en.yml ├── offer_parameters.yml ├── puma.rb ├── robots.development.txt ├── robots.production.txt ├── routes.rb ├── sidekiq.yml ├── spring.rb ├── stomp_publisher.yml ├── stomp_subscriber.yml ├── storage.yml ├── templates │ └── jupyterhub_datamount.yml ├── tours.yml ├── tours │ ├── details │ │ └── index.en.yml │ ├── home │ │ └── index.en.yml │ ├── profiles │ │ ├── edit.en.yml │ │ └── show.en.yml │ └── services │ │ ├── index.en.yml │ │ └── show.en.yml └── xgus.yml ├── db ├── data.yml ├── data_e2e.yml ├── internal_vocabulary.yml ├── logos │ ├── SpotOn-logo.png │ ├── alien.png │ ├── amber.png │ ├── apache-tomcat.png │ ├── archive-storage.png │ ├── argo-data.png │ ├── autodock-vina.png │ ├── b2access.png │ ├── b2drop.png │ ├── b2find.png │ ├── b2handle.png │ ├── b2note.png │ ├── b2safe.png │ ├── b2share.png │ ├── b2stage.png │ ├── chipster.png │ ├── chronos.png │ ├── cloud-compute-offer.png │ ├── cloud-compute.png │ ├── cloud-container-compute.png │ ├── cloud-ferro-eo-browser.png │ ├── cloud-ferro.png │ ├── cloud-training-infrastructure.png │ ├── clustalw2.png │ ├── component-metadata-infrastructure.png │ ├── cs-rosetta.png │ ├── d4science-gateway.png │ ├── dariah.png │ ├── disvis.png │ ├── docker.png │ ├── dynamic-on-demand-analysis-service.png │ ├── ePouta-logo.jpg │ ├── ec3.png │ ├── enes-climate-analytics-service.png │ ├── eodc-jupyter.png │ ├── eodc.png │ ├── fanten.png │ ├── fitsm-all-services.png │ ├── fitsm.png │ ├── galaxy.png │ ├── geo-dab.jpg │ ├── geoss-portal.png │ ├── gep-alpine.png │ ├── gep-eo.png │ ├── gep-hrcm.png │ ├── gnu-octave.png │ ├── gnuplot.png │ ├── haddock.png │ ├── hadoop.png │ ├── high-throughput-compute.png │ ├── jupyter.png │ ├── lifewatch-eric-plants-identification-app.png │ ├── lrs-logo.png │ ├── marathon.png │ ├── mea.png │ ├── namd.png │ ├── opencoasts.png │ ├── orfeus-european-integrated-data-archive-eida.png │ ├── panData.png │ ├── panFaas.png │ ├── particle-formation-vre.png │ ├── plants-identificatio-app.png │ ├── powerfit.png │ ├── prominence-logo.png │ ├── rasdaman-eo-datacube.png │ ├── sentinel-hub.png │ ├── sentinel_hub_by_sinergise_logo.png │ ├── spoton.png │ ├── the-r-project-for-statistical-computing.png │ ├── the-semantic-search-engine-sse.png │ ├── training-infrastructure.png │ ├── vcr-logo.png │ ├── vlo-logo.png │ ├── vre.png │ ├── wenmr-suite-for-structural-biology.png │ └── wspgrade.png ├── migrate │ ├── 20180517072153_create_services.rb │ ├── 20180525090829_devise_create_users.rb │ ├── 20180525115028_add_checkin_user_details.rb │ ├── 20180607103156_create_categories.rb │ ├── 20180607105149_create_service_categories.rb │ ├── 20180615082836_create_project_items.rb │ ├── 20180615121609_create_project_item_changes.rb │ ├── 20180621061901_add_terms_of_use_to_service.rb │ ├── 20180622083036_add_author_to_project_item_change.rb │ ├── 20180628101529_create_affiliations.rb │ ├── 20180705112318_add_issue_id_to_project_items.rb │ ├── 20180705112813_add_issue_status_to_project_items.rb │ ├── 20180705121340_add_tagline_to_service.rb │ ├── 20180706090424_add_owner_to_service.rb │ ├── 20180706101250_add_roles_mask_to_user.rb │ ├── 20180711132009_add_rating_to_service.rb │ ├── 20180711140914_add_connected_url_to_services.rb │ ├── 20180716124933_create_service_opinions.rb │ ├── 20180719071704_add_open_access_to_service.rb │ ├── 20180808123925_create_providers.rb │ ├── 20180809073237_add_provider_to_service.rb │ ├── 20180905073314_add_service_opinion_count.rb │ ├── 20180920114208_add_contact_emails_to_service.rb │ ├── 20181003095650_add_details_to_services.rb │ ├── 20181012081942_add_iid_to_project_item_change.rb │ ├── 20181015070246_add_category_services_count.rb │ ├── 20181017195440_create_projects.rb │ ├── 20181017204945_add_project_ref_to_project_items.rb │ ├── 20181018085610_remove_user_ref_from_project_items.rb │ ├── 20181022085713_create_offers.rb │ ├── 20181022113319_add_offer_ref_to_project_item.rb │ ├── 20181022113346_remove_service_ref_from_project_item.rb │ ├── 20181024093203_create_service_relationships.rb │ ├── 20181025095231_add_usage_section_to_project_item.rb │ ├── 20181025095520_add_offers_count.rb │ ├── 20181026063221_add_activate_message_to_service.rb │ ├── 20181029085324_create_research_areas.rb │ ├── 20181029141125_create_service_research_areas.rb │ ├── 20181029181312_add_affiliation_ref_to_project_item.rb │ ├── 20181030074128_create_active_storage_tables.active_storage.rb │ ├── 20181102122138_change_dedicated_for_to_array.rb │ ├── 20181105150915_create_service_providers.rb │ ├── 20181106150811_add_parameters_to_offer.rb │ ├── 20181106151032_add_properties_to_project_item.rb │ ├── 20181107143358_add_active_affiliations_count.rb │ ├── 20181112111536_add_additional_attriutes_to_project.rb │ ├── 20181114222220_create_friendly_id_slugs.rb │ ├── 20181114224426_add_slug_to_service.rb │ ├── 20181114224431_add_slug_to_category.rb │ ├── 20181116084141_create_platforms.rb │ ├── 20181116085809_create_service_related_platforms.rb │ ├── 20181116101816_add_service_type_to_service.rb │ ├── 20181119100216_add_ancestry_to_research_area.rb │ ├── 20181121094056_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb │ ├── 20181121094057_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20181121094058_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20181121094059_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20181121094060_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20181121094061_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb │ ├── 20181121100702_create_target_groups.rb │ ├── 20181121101654_create_service_target_groups.rb │ ├── 20181205143939_add_order_rating_and_change_rating_to_service_rating_for_service_opinions.rb │ ├── 20181207103126_add_status_to_service.rb │ ├── 20181212102330_add_additional_customer_typology_fields_to_project_item_and_project.rb │ ├── 20190110095634_remove_owner_from_service.rb │ ├── 20190110103051_create_service_user_relationships.rb │ ├── 20190110111453_add_owned_services_count_to_user.rb │ ├── 20190114121032_add_research_area_ref_to_project_item.rb │ ├── 20190117135044_add_request_voucher_to_project_item.rb │ ├── 20190117135150_add_voucher_to_project_item.rb │ ├── 20190117135718_add_voucher_support_to_offer.rb │ ├── 20190121103333_add_status_to_offer.rb │ ├── 20190122205054_add_ancestry_depth_to_category.rb │ ├── 20190128132837_create_service_sources.rb │ ├── 20190128142124_add_upstream_to_service.rb │ ├── 20190130130546_change_eid_to_be_string_in_service_sources.rb │ ├── 20190215073516_update_service_phase_values.rb │ ├── 20190215114245_add_offer_type_to_offer.rb │ ├── 20190306111257_add_service_order_target_to_service.rb │ ├── 20190326203609_create_provider_sources_table.rb │ ├── 20190408130702_update_nil_parameters.rb │ ├── 20190408131319_change_offers_parameters_default.rb │ ├── 20190408131604_change_project_item_properties_default.rb │ ├── 20190426144042_change_service_category_to_categorization.rb │ ├── 20190522114751_add_countries_to_project.rb │ ├── 20190528213824_add_issue_id_to_project.rb │ ├── 20190528213931_add_issue_status_to_project.rb │ ├── 20190529114220_remove_project_fields_from_project_item.rb │ ├── 20190614094402_add_additional_information_to_project.rb │ ├── 20190614094412_remove_additional_information_from_project_item.rb │ ├── 20190618115523_create_message.rb │ ├── 20190619104624_remove_active_affiliations_count_from_user.rb │ ├── 20190619112716_add_email_organization_department_webpage_to_project.rb │ ├── 20190619152804_create_status.rb │ ├── 20190627154753_create_project_research_areas.rb │ ├── 20190627182348_drop_affiliation.rb │ ├── 20190701175439_remove_research_area_ref_from_project_items.rb │ ├── 20190711113311_add_status_to_project.rb │ ├── 20190718103314_add_timestamps_to_project.rb │ ├── 20190729123238_change_countries_names_in_project.rb │ ├── 20190814112139_change_uniqueness_of_names_in_categories_providers_platforms_and_research_areas.rb │ ├── 20190814203908_add_iid_to_project_item.rb │ ├── 20190816135743_remove_terms_of_use_in_service.rb │ ├── 20190816143734_rename_corporate_sla_in_services.rb │ ├── 20190821132453_add_helpdesk_email_to_service.rb │ ├── 20190902135120_remove_uniqueness_from_user_email_index.rb │ ├── 20190919073353_remove_services_count_from_category.rb │ ├── 20190919085356_change_category_name_uniq_scope.rb │ ├── 20190919090322_change_research_area_name_uniqueness_scope.rb │ ├── 20191001140915_set_project_creation_date_default.rb │ ├── 20191003120324_fix_iid_incrementation.rb │ ├── 20191029141900_change_service_and_offer_type_values.rb │ ├── 20191118102902_add_webpage_to_offer.rb │ ├── 20191121084235_offer_type_set_null_false.rb │ ├── 20191128084224_remove_message_from_status.rb │ ├── 20191205113156_remove_description_index_from_service.rb │ ├── 20191216141227_add_offer_fields_to_project_item.rb │ ├── 20200102094935_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb │ ├── 20200107124150_add_edited_to_messages.rb │ ├── 20200114124437_create_action_text_tables.action_text.rb │ ├── 20200114130609_create_help_sections.rb │ ├── 20200114134749_create_help_items.rb │ ├── 20200123105814_create_lead_sections.rb │ ├── 20200123125921_create_leads.rb │ ├── 20200128142804_add_project_items_count_to_services.rb │ ├── 20200312144537_add_version_to_services.rb │ ├── 20200507145746_create_user_categories.rb │ ├── 20200507145926_create_user_research_areas.rb │ ├── 20200507150108_add_subscription_fields_to_user.rb │ ├── 20200518084242_add_popularity_ratio_to_service.rb │ ├── 20200521150023_change_project_default_timestamp.rb │ ├── 20200605135702_change_service_title_to_name.rb │ ├── 20200608150911_change_research_area_to_scientific_domain.rb │ ├── 20200609064317_add_resource_organisation_to_project.rb │ ├── 20200612095339_change_languages_type_to_array.rb │ ├── 20200615120733_change_languages_to_language_availability.rb │ ├── 20200617094437_change_service_type_to_order_type.rb │ ├── 20200617114136_change_offer_type_to_order_type.rb │ ├── 20200617140143_change_tutorial_url_to_training_information_url.rb │ ├── 20200617145432_add_new_url_fields_to_service.rb │ ├── 20200619150640_create_vocabulary.rb │ ├── 20200619153511_create_service_vocabulary.rb │ ├── 20200623124102_add_description_to_target_groups.rb │ ├── 20200624085537_change_service_places_to_array.rb │ ├── 20200624085709_change_places_to_geographical_availabilities.rb │ ├── 20200624152208_change_target_group_to_target_users.rb │ ├── 20200630193345_create_service_contacts.rb │ ├── 20200702155317_add_security_contact_email_to_service.rb │ ├── 20200703124752_remove_phase_from_service.rb │ ├── 20200703170548_rewrite_contact_emails_to_public_contacts.rb │ ├── 20200707142820_remove_contact_emails.rb │ ├── 20200709100253_add_missing_fields_to_service.rb │ ├── 20200713135735_add_polymorphic_associations_services_to_services.rb │ ├── 20200713140724_set_manual_service_relationship_to_existing_service_relationship.rb │ ├── 20200717142450_add_welcome_popup_to_user.rb │ ├── 20200825123803_create_tour_histories.rb │ ├── 20200916154501_add_eid_and_description_to_existing_vocabularies.rb │ ├── 20200922120654_add_related_platforms_and_synchronized_at_to_service.rb │ ├── 20201001154738_add_internal_to_offer_and_project_item.rb │ ├── 20201001155112_map_order_type_to_new_rdt.rb │ ├── 20201006160433_add_pid_to_service.rb │ ├── 20201021113337_add_order_url_to_offer_and_project_item.rb │ ├── 20201112070943_create_tour_feedbacks.rb │ ├── 20201211150131_add_authentication_token_to_users.rb │ ├── 20201216160453_create_data_administrators.rb │ ├── 20201216161322_create_provider_data_administrators.rb │ ├── 20210129114724_add_default_offer_to_offer.rb │ ├── 20210203155804_create_provider_vocabulary.rb │ ├── 20210203170053_create_provider_scientific_domains.rb │ ├── 20210203170414_add_missing_fields_to_provider.rb │ ├── 20210226164811_migrate_services_to_published_status.rb │ ├── 20210302061137_migrate_offers_to_deleted.rb │ ├── 20210316161711_add_errored_to_service_source.rb │ ├── 20210323162816_generalize_project_item_statuses.rb │ ├── 20210324140221_create_oms.rb │ ├── 20210324141046_create_oms_administrations.rb │ ├── 20210324141438_create_oms_providers.rb │ ├── 20210325072823_create_user_service.rb │ ├── 20210325120212_add_oms_to_offer.rb │ ├── 20210329084503_add_scope_and_role_to_message.rb │ ├── 20210331110641_add_user_secrets_to_project_item.rb │ ├── 20210401095458_add_upstream_to_provider.rb │ ├── 20210406133857_create_events.rb │ ├── 20210415114249_remove_action_delete_from_events.rb │ ├── 20210422132539_change_resource_organisation_not_null.rb │ ├── 20210424151714_rename_oms_to_omses.rb │ ├── 20210427113134_set_internal_in_offers.rb │ ├── 20210513095954_remove_webpage.rb │ ├── 20210517122507_add_ancestry_to_target_user.rb │ ├── 20210517142836_effective_internal.rb │ ├── 20210518101302_remove_service_order_target.rb │ ├── 20210608090039_add_errored_field_to_provider_source.rb │ ├── 20210614131726_add_author_uid_to_message.rb │ ├── 20210618130500_create_triggers.rb │ ├── 20210623105544_add_authorization_to_triggers.rb │ ├── 20210713152307_change_eic_to_eosc_registry.rb │ ├── 20210817055554_update_scientific_domains.rb │ ├── 20210819095000_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20210819095001_create_active_storage_variant_records.active_storage.rb │ ├── 20211001100246_create_offer_links.rb │ ├── 20211001104718_add_bundled_offers_count_to_offer.rb │ ├── 20211005073915_add_ancestry_to_project_items.rb │ ├── 20211025064757_add_status_to_providers.rb │ ├── 20211116143044_add_conversation_last_seen.rb │ ├── 20220120112130_set_blank_order_type_in_service.rb │ ├── 20220420142805_create_links.rb │ ├── 20220421084638_remove_unique_from_name_in_providers.rb │ ├── 20220426103925_move_links_to_links_table.rb │ ├── 20220426114431_remove_links_from_models.rb │ ├── 20220514101619_add_abbreviation_to_service.rb │ ├── 20220517111417_add_catalogue_to_providers.rb │ ├── 20220517202141_add_catalogue_to_service.rb │ ├── 20220519094804_create_catalogue.rb │ ├── 20220519095130_create_service_catalogue.rb │ ├── 20220519095145_create_provider_catalogue.rb │ ├── 20220519095301_remove_catalogue_from_service_and_provider.rb │ ├── 20220520071847_add_synchronized_at_to_catalogue.rb │ ├── 20220524154008_rename_hosting_legal_entity.rb │ ├── 20220527114805_extend_platforms.rb │ ├── 20220615201039_change_not_null_from_eid_in_vocabularies.rb │ ├── 20220919051945_add_horizontal_to_services.rb │ ├── 20220927125027_create_datasources.rb │ ├── 20221011153724_create_datasource_sources.rb │ ├── 20221011155032_create_datasource_catalogues.rb │ ├── 20221011160251_create_datasource_providers.rb │ ├── 20221012065708_create_datasource_scientific_domains.rb │ ├── 20221012071325_create_datasource_categories.rb │ ├── 20221012071923_create_datasource_vocabularies.rb │ ├── 20221012074135_create_datasource_target_groups.rb │ ├── 20221012102350_create_datasource_service.rb │ ├── 20221012121420_create_datasource_platforms.rb │ ├── 20221012155558_create_persistent_identity_systems.rb │ ├── 20221012155620_create_persistent_identity_system_vocabularies.rb │ ├── 20221108125558_rename_research_category_to_research_step.rb │ ├── 20221212232052_add_monitoring_cache_to_services_and_datasources.rb │ ├── 20230102060934_create_bundles.rb │ ├── 20230321113526_add_bundles_for_bundled_offers.rb │ ├── 20230414063349_add_datasource_fields_to_services.rb │ ├── 20230422003902_create_guideline.rb │ ├── 20230422004536_connect_guidelines.rb │ ├── 20230613001037_add_bundle_to_project_item.rb │ ├── 20230705132350_add_bundle_exclusive_to_offer.rb │ ├── 20230808155330_create_research_products.rb │ ├── 20230905135312_add_index_to_bundle_offers.rb │ ├── 20230918141631_add_statistics_to_presentable.rb │ ├── 20231012152707_add_persistent_pid_to_importable.rb │ ├── 20231110091337_add_access_type_to_research_products.rb │ ├── 20231114144656_rename_research_step_to_marketplace_location.rb │ ├── 20231114151931_add_alternative_identifiers.rb │ ├── 20231211000114_add_harvestable_to_services.rb │ ├── 20240107093833_add_fields_to_catalogues.rb │ ├── 20240107142231_create_catalogue_scientific_domains.rb │ ├── 20240109162434_create_catalogue_vocabularies.rb │ ├── 20240205161301_create_catalogue_sources.rb │ ├── 20240205161701_add_upstream_to_catalogue.rb │ ├── 20240215075931_add_scope_to_catalogue.rb │ ├── 20240215080105_change_catalogue_description_to_text.rb │ ├── 20240215125231_create_catalogue_data_administrators.rb │ ├── 20240306071515_add_new_associations_to_offer.rb │ ├── 20240708123747_add_user_id_to_data_administrator.rb │ ├── 20250205162153_create_approval_requests.rb │ ├── 20250211095651_add_country_phone_code_to_contacts.rb │ ├── 20250324052957_change_provider_name_to_string.rb │ ├── 20250410141501_create_observed_user_offers.rb │ ├── 20250414024423_add_counters_to_offers.rb │ ├── 20250518120000_rename_project_name_to_project_owner.rb │ ├── 20250806111826_create_deployable_services.rb │ ├── 20250806112028_create_deployable_service_sources.rb │ ├── 20250806112106_create_deployable_service_scientific_domains.rb │ ├── 20250911112515_add_deployable_service_to_offers.rb │ ├── 20250911112532_add_deployment_link_to_project_items.rb │ └── 20250911120720_make_service_id_nullable_in_offers.rb ├── schema.rb ├── seeds.rb └── vocabulary.yml ├── docker-compose-e2e.yml ├── docker-compose-x64.yml ├── docker-compose.yml ├── docs ├── diagrams │ ├── EOSC Marketplace API.png │ └── Ordering Process.png ├── jira_integration.md └── upgrade │ ├── 2.0.0.md │ ├── 2.10.0.md │ ├── 2.10.3.md │ ├── 2.11.0.md │ ├── 2.12.0.md │ ├── 2.7.0.md │ ├── 3.10.0.md │ ├── 3.11.0.md │ ├── 3.12.0.md │ ├── 3.15.0.md │ ├── 3.17.0.md │ ├── 3.26.0.md │ ├── 3.29.0.md │ ├── 3.33.0.md │ ├── 3.38.0.md │ ├── 3.43.0.md │ ├── 3.46.0.md │ ├── 3.47.0.md │ ├── 3.48.0.md │ ├── 3.51.0.md │ ├── 3.52.0.md │ ├── 3.53.0.md │ ├── 3.55.3.md │ ├── 3.56.0.md │ ├── 3.57.0.md │ ├── 3.58.0.md │ ├── 3.7.0.md │ └── 3.9.0.md ├── lib ├── assets │ ├── .keep │ └── eosc-img.png ├── config_loader_helper.rb ├── custom_failure.rb ├── import │ ├── catalogues.rb │ ├── datasources.rb │ ├── deployable_services.rb │ ├── guidelines.rb │ ├── providers.rb │ ├── resources.rb │ └── vocabularies.rb ├── jira │ ├── console_checker.rb │ ├── project_migrator.rb │ └── setup.rb ├── jms │ └── subscriber.rb ├── monitoring_data │ └── fetch.rb ├── ordering_api │ ├── add_provider_oms.rb │ ├── add_sombo.rb │ ├── authorization_test_setup.rb │ └── triggers_test_setup.rb ├── recommender_lib │ └── serialize_db.rb ├── tasks │ ├── .keep │ ├── active_storage.rake │ ├── add_extensions_to_images.rake │ ├── add_providers_default_logo.rake │ ├── cookies_migrator.rake │ ├── counter_cache.rake │ ├── default_offer.rake │ ├── dev.rake │ ├── ess.rake │ ├── friendly_id.rake │ ├── gettext.rake │ ├── import.rake │ ├── jira.rake │ ├── migration.rake │ ├── monitoring_data.rake │ ├── ordering_api.rake │ ├── projects_migrate_from_affiliation.rake │ ├── rdt.rake │ ├── recommender.rake │ ├── sidekiq.rake │ ├── statuses.rake │ ├── stimulus_test.rake │ ├── test_bootstrap.rake │ ├── viewable.rake │ ├── whitelabel.rake │ └── xgus.rake ├── test_bootstrap │ ├── add_role_to_user.rb │ └── omses_with_different_custom_params.rb └── xgus │ └── checker.rb ├── locale └── .gitkeep ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png └── favicon.ico ├── solr ├── config │ ├── configsets │ │ └── _default │ │ │ └── conf │ │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_et.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ │ ├── managed-schema │ │ │ ├── protwords.txt │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ └── solr.xml ├── docker-compose.yml └── docker-entrypoint-initdb.d │ └── 00-create-cores.sh ├── spec ├── components │ ├── services │ │ ├── information_description_component_spec.rb │ │ └── inline_order_url_component_spec.rb │ └── turbo_modal_component_spec.rb ├── controllers │ ├── api │ │ └── v1 │ │ │ └── search │ │ │ └── services_controller_facets_spec.rb │ ├── auth_mock_controller_spec.rb │ ├── concerns │ │ ├── recommendable_spec.rb │ │ ├── searchable_spec.rb │ │ ├── sortable_spec.rb │ │ └── tourable_spec.rb │ ├── federation │ │ └── services_controller_active_filters_spec.rb │ ├── services │ │ └── choose_offers_controller_spec.rb │ └── user_action_controller_spec.rb ├── factories │ ├── bundle.rb │ ├── catalogue.rb │ ├── catalogue_sources.rb │ ├── categories.rb │ ├── customizable_project_items.rb │ ├── data_administrators.rb │ ├── deployable_service_sources.rb │ ├── deployable_services.rb │ ├── eosc_registry_providers_response.rb │ ├── eosc_registry_services_response.rb │ ├── eosc_registry_vocabularies_response.rb │ ├── event.rb │ ├── help_items.rb │ ├── help_sections.rb │ ├── images │ │ └── test.png │ ├── jira_webhook_response.rb │ ├── jms_catalogue_response.rb │ ├── jms_json_catalogue.rb │ ├── jms_json_provider.rb │ ├── jms_json_service.rb │ ├── jms_providers_response.rb │ ├── jms_service.rb │ ├── lead.rb │ ├── lead_section.rb │ ├── links │ │ ├── link_multimedia_urls.rb │ │ └── link_use_cases_urls.rb │ ├── main_contact.rb │ ├── messages.rb │ ├── offers.rb │ ├── omses.rb │ ├── omses │ │ ├── authorizations │ │ │ └── authorizations.rb │ │ └── triggers.rb │ ├── parameters.rb │ ├── platforms.rb │ ├── project_items.rb │ ├── projects.rb │ ├── provider_sources.rb │ ├── providers.rb │ ├── public_contact.rb │ ├── report.rb │ ├── response.rb │ ├── scientific_domains.rb │ ├── service_opinion.rb │ ├── service_sources.rb │ ├── services.rb │ ├── statuses.rb │ ├── target_users.rb │ ├── users.rb │ └── vocabularies │ │ ├── access_modes.rb │ │ ├── access_types.rb │ │ ├── areas_of_activity.rb │ │ ├── bundle_capabilities_of_goals.rb │ │ ├── bundle_goals.rb │ │ ├── esfri_domains.rb │ │ ├── esfri_types.rb │ │ ├── funding_bodies.rb │ │ ├── funding_programs.rb │ │ ├── legal_statuses.rb │ │ ├── life_cycle_statuses.rb │ │ ├── marketplace_location.rb │ │ ├── meril_scientific_domains.rb │ │ ├── networks.rb │ │ ├── provider_life_cycle_statuses.rb │ │ ├── service_category.rb │ │ ├── societal_grand_challenges.rb │ │ ├── structure_type.rb │ │ └── trls.rb ├── features │ ├── access_denied_spec.rb │ ├── add_item_to_project_spec.rb │ ├── admin │ │ ├── help_builder_spec.rb │ │ ├── lead_builder_spec.rb │ │ └── version_spec.rb │ ├── api_docs_spec.rb │ ├── backoffice │ │ ├── categories_spec.rb │ │ ├── parameters_spec.rb │ │ ├── platforms_spec.rb │ │ ├── providers_spec.rb │ │ ├── scientific_domains_spec.rb │ │ ├── services │ │ │ └── bundles_spec.rb │ │ ├── services_spec.rb │ │ ├── statistics_spec.rb │ │ └── vocabularies_spec.rb │ ├── backoffice_spec.rb │ ├── categories_spec.rb │ ├── checkin_login_spec.rb │ ├── comparison_spec.rb │ ├── deployable_service_ordering_spec.rb │ ├── favourite_spec.rb │ ├── filter_spec.rb │ ├── help_spec.rb │ ├── home_spec.rb │ ├── my_services_spec.rb │ ├── opinions_spec.rb │ ├── order_spec.rb │ ├── ordering_configuration_spec.rb │ ├── profile_spec.rb │ ├── project_services_spec.rb │ ├── projects_spec.rb │ ├── provider_question_spec.rb │ ├── provider_spec.rb │ ├── recommended_spec.rb │ ├── report_spec.rb │ ├── search_spec.rb │ ├── service_question_spec.rb │ ├── service_recommendations_spec.rb │ ├── service_spec.rb │ ├── tours │ │ ├── overview_spec.rb │ │ └── query_param_spec.rb │ └── user_action_spec.rb ├── fixtures │ └── files │ │ ├── MetalPDB.png │ │ ├── PDB_logo_rect_medium.png │ │ ├── PDB_logo_rect_medium.svg │ │ ├── PhenoMeNal_logo.png │ │ └── eosc_registry_import_output.json ├── helpers │ ├── application_helper_spec.rb │ ├── attributes_helper_spec.rb │ ├── country_helper_spec.rb │ ├── date_helper_spec.rb │ ├── markdown_helper_spec.rb │ ├── nav_helper_spec.rb │ ├── project_items_helper_spec.rb │ ├── research_area_helper_spec.rb │ └── service_helper_spec.rb ├── jobs │ ├── deployable_service │ │ └── deployment_job_spec.rb │ ├── message │ │ └── register_message_job_spec.rb │ ├── oms │ │ └── call_triggers_job_spec.rb │ ├── project │ │ └── register_job_spec.rb │ ├── project_item │ │ ├── ready_job_spec.rb │ │ └── register_job_spec.rb │ └── service │ │ └── delete_job_spec.rb ├── lib │ ├── images │ │ └── invalid-logo.svg │ ├── import │ │ ├── providers_spec.rb │ │ ├── resources_spec.rb │ │ └── vocabularies_spec.rb │ ├── jira │ │ ├── console_checker_spec.rb │ │ ├── project_migrator_spec.rb │ │ └── setup_spec.rb │ ├── jms │ │ └── subscriber_spec.rb │ ├── ordering_api │ │ ├── add_provider_oms_spec.rb │ │ └── add_sombo_spec.rb │ ├── recommender_lib │ │ └── serialize_db_spec.rb │ └── tasks │ │ ├── import_spec.rb │ │ └── jira_spec.rb ├── mailers │ ├── previews │ │ ├── offer_preview.rb │ │ ├── project_item_preview.rb │ │ ├── provider_preview.rb │ │ ├── service_preview.rb │ │ └── webhook_jira_preview.rb │ ├── project_item_spec.rb │ └── service_spec.rb ├── models │ ├── access_mode_spec.rb │ ├── access_type_spec.rb │ ├── attribute │ │ ├── date_spec.rb │ │ └── quantity_price_spec.rb │ ├── attribute_spec.rb │ ├── bundle_spec.rb │ ├── category_spec.rb │ ├── deployable_service_spec.rb │ ├── event_spec.rb │ ├── filter │ │ ├── marketplace_location_spec.rb │ │ ├── platform_spec.rb │ │ ├── provider_spec.rb │ │ ├── scientific_domain_spec.rb │ │ ├── tag_spec.rb │ │ └── target_user_spec.rb │ ├── filter_spec.rb │ ├── funding_body_spec.rb │ ├── funding_program_spec.rb │ ├── help_item_spec.rb │ ├── help_section_spec.rb │ ├── jira │ │ ├── checker_spec.rb │ │ └── client_spec.rb │ ├── lead_section_spec.rb │ ├── lead_spec.rb │ ├── links │ │ ├── multimedia_urls.rb │ │ └── use_cases_urls.rb │ ├── main_contact_spec.rb │ ├── message_spec.rb │ ├── messageable.rb │ ├── observed_user_offer_spec.rb │ ├── offer_spec.rb │ ├── oms │ │ ├── authorization │ │ │ └── authorization_basic_spec.rb │ │ ├── authorization_spec.rb │ │ └── trigger_spec.rb │ ├── oms_spec.rb │ ├── parameter │ │ ├── constant_spec.rb │ │ ├── date_spec.rb │ │ ├── input_spec.rb │ │ ├── multiselect_spec.rb │ │ ├── quantity_price_spec.rb │ │ ├── range_spec.rb │ │ └── select_spec.rb │ ├── platform_spec.rb │ ├── project_item_spec.rb │ ├── project_spec.rb │ ├── provider_source_spec.rb │ ├── provider_spec.rb │ ├── public_contact_spec.rb │ ├── publishable.rb │ ├── report_spec.rb │ ├── research_product_spec.rb │ ├── scientific_domain_spec.rb │ ├── service │ │ └── question_spec.rb │ ├── service_opinion_spec.rb │ ├── service_provider_spec.rb │ ├── service_related_platform_spec.rb │ ├── service_research_area_spec.rb │ ├── service_source_spec.rb │ ├── service_spec.rb │ ├── service_target_user_spec.rb │ ├── status_spec.rb │ ├── target_user_spec.rb │ ├── tour_feedback_spec.rb │ ├── usage_report_spec.rb │ └── user_spec.rb ├── policies │ ├── admin │ │ └── admin_policy_spec.rb │ ├── api │ │ └── v1 │ │ │ ├── event_policy_spec.rb │ │ │ ├── message_policy_spec.rb │ │ │ ├── offer_policy_spec.rb │ │ │ ├── oms_policy_spec.rb │ │ │ ├── project_item_policy_spec.rb │ │ │ ├── project_policy_spec.rb │ │ │ └── service_policy_spec.rb │ ├── backoffice │ │ ├── backoffice_policy_spec.rb │ │ ├── category_policy_spec.rb │ │ ├── offer_policy_spec.rb │ │ ├── platform_policy_spec.rb │ │ ├── provider_policy_spec.rb │ │ ├── scientific_domain_policy_spec.rb │ │ └── service_policy_spec.rb │ ├── deployable_service_policy_spec.rb │ ├── message_policy_spec.rb │ ├── offer_policy_spec.rb │ ├── ordering_configuration │ │ └── offer_policy_spec.rb │ ├── project_item_policy_spec.rb │ ├── project_policy_spec.rb │ ├── provider_policy_spec.rb │ ├── service_context_policy_spec.rb │ └── service_policy_spec.rb ├── rails_helper.rb ├── requests │ ├── api │ │ ├── services_controller_spec.rb │ │ ├── v1 │ │ │ ├── ess │ │ │ │ ├── bundles_controller_spec.rb │ │ │ │ ├── catalogues_controller_spec.rb │ │ │ │ ├── datasources_controller_spec.rb │ │ │ │ ├── deployable_services_controller_spec.rb │ │ │ │ ├── offers_controller_spec.rb │ │ │ │ ├── providers_controller_spec.rb │ │ │ │ └── services_controller_spec.rb │ │ │ ├── omses │ │ │ │ ├── events_controller_spec.rb │ │ │ │ ├── messages_controller_spec.rb │ │ │ │ ├── projects │ │ │ │ │ └── project_items_controller_spec.rb │ │ │ │ └── projects_controller_spec.rb │ │ │ ├── omses_controller_spec.rb │ │ │ ├── resources │ │ │ │ └── offers_controller_spec.rb │ │ │ ├── resources_controller_spec.rb │ │ │ ├── search │ │ │ │ └── services_controller_spec.rb │ │ │ └── users_controller_spec.rb │ │ └── webhooks │ │ │ └── jira_spec.rb │ ├── backoffice │ │ ├── categories_spec.rb │ │ ├── platforms_spec.rb │ │ ├── providers_spec.rb │ │ ├── research_areas_spec.rb │ │ └── services_spec.rb │ ├── public │ │ └── services_spec.rb │ ├── services │ │ └── application_controller_spec.rb │ └── unauthenticated_spec.rb ├── serializers │ ├── api │ │ └── v1 │ │ │ ├── event_serializer_spec.rb │ │ │ ├── message_serializer_spec.rb │ │ │ ├── offer_serializer_spec.rb │ │ │ ├── project_item_serializer_spec.rb │ │ │ └── project_serializer_spec.rb │ ├── ess │ │ └── deployable_service_serializer_spec.rb │ └── recommender │ │ ├── deployable_service_serializer_spec.rb │ │ ├── project_serializer_spec.rb │ │ ├── service_serializer_spec.rb │ │ └── user_serializer_spec.rb ├── services │ ├── bundle │ │ ├── create_spec.rb │ │ └── update_spec.rb │ ├── catalogue │ │ └── pc_create_or_update_spec.rb │ ├── deployable_service │ │ ├── create_default_offer_spec.rb │ │ ├── jupyter_hub_parameter_generator_spec.rb │ │ └── tosca_template_filler_spec.rb │ ├── event │ │ └── call_triggers_spec.rb │ ├── importers │ │ ├── catalogue_spec.rb │ │ ├── logo_spec.rb │ │ ├── provider_spec.rb │ │ └── request_spec.rb │ ├── infrastructure_manager │ │ ├── client_integration_spec.rb │ │ └── client_spec.rb │ ├── jira │ │ ├── comment_activity_spec.rb │ │ └── issue_updated_spec.rb │ ├── jms │ │ ├── manage_message_spec.rb │ │ └── publisher_spec.rb │ ├── message │ │ ├── create_spec.rb │ │ └── register_message_spec.rb │ ├── offer │ │ ├── destroy_spec.rb │ │ ├── unpublished_spec.rb │ │ └── update_spec.rb │ ├── project │ │ ├── archive_spec.rb │ │ ├── jira_update.rb │ │ └── register_spec.rb │ ├── project_item │ │ ├── create_spec.rb │ │ ├── on_created │ │ │ ├── publish_addition_spec.rb │ │ │ └── publish_coexistence_spec.rb │ │ ├── on_status_type_updated_spec.rb │ │ ├── ready_spec.rb │ │ └── register_spec.rb │ ├── provider │ │ └── pc_create_or_update_spec.rb │ ├── recommender │ │ └── simple_recommender_spec.rb │ ├── service │ │ ├── create_spec.rb │ │ ├── delete_spec.rb │ │ ├── destroy_spec.rb │ │ ├── pc_create_or_update_spec.rb │ │ ├── publish_spec.rb │ │ ├── unpublish_spec.rb │ │ └── update_spec.rb │ ├── service_opinion │ │ ├── create_spec.rb │ │ └── update_spec.rb │ └── trigger │ │ └── call_spec.rb ├── spec_helper.rb ├── support │ ├── cookies_policy.rb │ ├── database_cleaner.rb │ ├── devise.rb │ ├── factory_bot.rb │ ├── helpers │ │ ├── cookie_helper.rb │ │ ├── external_service_data_helper.rb │ │ ├── jira_helper.rb │ │ ├── omniauth_helper.rb │ │ ├── request_spec_helper.rb │ │ ├── simple_recommender_spec_helper.rb │ │ ├── turbo_assertions_helper.rb │ │ └── website_helper.rb │ ├── message_delivery.rb │ ├── should_matchers.rb │ └── tasks.rb ├── swagger_helper.rb └── validators │ └── mp_url_validator_spec.rb ├── swagger └── v1 │ ├── error.json │ ├── ess │ ├── bundle │ │ ├── bundle_index.json │ │ └── bundle_read.json │ ├── catalogue │ │ ├── catalogue_index.json │ │ └── catalogue_read.json │ ├── contact_read.json │ ├── datasource │ │ ├── datasource_index.json │ │ └── datasource_read.json │ ├── deployable_service │ │ ├── deployable_service_index.json │ │ └── deployable_service_read.json │ ├── link_read.json │ ├── offer │ │ ├── offer_index.json │ │ └── offer_read.json │ ├── persistent_identity_system_read.json │ ├── provider │ │ ├── provider_index.json │ │ └── provider_read.json │ └── service │ │ ├── service_index.json │ │ └── service_read.json │ ├── ess_swagger.json │ ├── event │ ├── event_index.json │ └── event_read.json │ ├── message │ ├── message_index.json │ ├── message_read.json │ ├── message_update.json │ └── message_write.json │ ├── offer │ ├── offer_definitions.json │ ├── offer_index.json │ ├── offer_read.json │ ├── offer_update.json │ └── offer_write.json │ ├── offering_swagger.json │ ├── oms │ ├── offering │ │ └── oms_read.json │ └── ordering │ │ ├── oms_index.json │ │ └── oms_read.json │ ├── ordering_swagger.json │ ├── project │ ├── project_index.json │ └── project_read.json │ ├── project_item │ ├── project_item_index.json │ ├── project_item_read.json │ └── project_item_update.json │ ├── resource │ ├── resource_index.json │ └── resource_read.json │ ├── search_swagger.json │ ├── user │ └── user_read.json │ └── users_swagger.json ├── test └── system │ ├── README.md │ ├── cypress.config.ts │ ├── cypress │ ├── e2e │ │ ├── integration_JIRA.spec.ts │ │ ├── provider_portal │ │ │ ├── provider_approved.spec.ts │ │ │ ├── provider_catalogue.spec.ts │ │ │ ├── provider_rejected.spec.ts │ │ │ ├── resource_approved.spec.ts │ │ │ ├── resource_catalogue.spec.ts │ │ │ └── resource_rejected.spec.ts │ │ └── regression_tests │ │ │ ├── backoffice │ │ │ ├── categories │ │ │ │ └── categories.spec.ts │ │ │ ├── platforms │ │ │ │ └── platforms.spec.ts │ │ │ ├── providers │ │ │ │ └── providers.spec.ts │ │ │ ├── resources │ │ │ │ └── owned_resources.spec.ts │ │ │ ├── scientific-domain │ │ │ │ └── scientific-domain.spec.ts │ │ │ └── vocabularies │ │ │ │ └── vocabularies.spec.ts │ │ │ ├── home-page │ │ │ ├── communities_infrastructures.spec.ts │ │ │ ├── providers.spec.ts │ │ │ ├── scientific-domain_categories.spec.ts │ │ │ └── target_user.spec.ts │ │ │ └── service-page │ │ │ ├── api_docs │ │ │ └── api_docs.spec.ts │ │ │ ├── comparison │ │ │ └── comparison.spec.ts │ │ │ ├── favourites │ │ │ └── favourites.spec.ts │ │ │ ├── filters │ │ │ ├── all_filters.spec.ts │ │ │ ├── dedicated_for.spec.ts │ │ │ ├── infrastructutes_platforms.spec.ts │ │ │ ├── order_type.spec.ts │ │ │ ├── providers.spec.ts │ │ │ ├── rating.spec.ts │ │ │ ├── resource_availability.spec.ts │ │ │ └── scientific_domains.spec.ts │ │ │ ├── mainsearch │ │ │ └── mainsearch.spec.ts │ │ │ ├── my_eosc_marketplace │ │ │ ├── my-profile.spec.ts │ │ │ └── my-project.spec.ts │ │ │ └── resources │ │ │ └── resources.spec.ts │ ├── factories │ │ ├── category.factory.ts │ │ ├── platform.factory.ts │ │ ├── project.factory.ts │ │ ├── provider.factory.ts │ │ ├── resource.factory.ts │ │ ├── scientific-domain.factory.ts │ │ ├── user.factory.ts │ │ └── vocabulary.factory.ts │ ├── fixtures │ │ ├── logo.jpg │ │ ├── logo.svg │ │ ├── messages.js │ │ ├── provider_playload.js │ │ └── resource_playload.js │ ├── plugins │ │ └── index.js │ └── support │ │ ├── all.ts │ │ ├── auth.ts │ │ ├── category.ts │ │ ├── coverage.js │ │ ├── e2e.ts │ │ ├── jira.ts │ │ ├── platforms.ts │ │ ├── project.ts │ │ ├── provider_portal.ts │ │ ├── provider_portal_access_token.ts │ │ ├── provider_portal_env.ts │ │ ├── providers.ts │ │ ├── resources.ts │ │ ├── scientific-domain.ts │ │ ├── utilities.ts │ │ └── vocabulary.ts │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── yarn.lock ├── vendor ├── .keep └── javascript │ └── .keep ├── version.txt ├── webpack.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci_backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.github/workflows/ci_backend.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/styles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.github/workflows/styles.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.gitmessage -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.mdl_style.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | all 4 | 5 | exclude_rule "MD024" 6 | -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.mdlrc -------------------------------------------------------------------------------- /.overcommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.overcommit.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | rubySingleQuote: false 2 | printWidth: 120 3 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 2 | -------------------------------------------------------------------------------- /.run/Import providers.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.run/Import providers.run.xml -------------------------------------------------------------------------------- /.run/Import resources.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.run/Import resources.run.xml -------------------------------------------------------------------------------- /.run/Start app.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.run/Start app.run.xml -------------------------------------------------------------------------------- /.run/Start containers.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.run/Start containers.run.xml -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.3.6 2 | yarn 1.22.22 3 | nodejs 20.19.3 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 4.1.1 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/_config.yml -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/fonts/ubuntu-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/fonts/ubuntu-license.txt -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/404.png -------------------------------------------------------------------------------- /app/assets/images/angle-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/angle-down.png -------------------------------------------------------------------------------- /app/assets/images/angle-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/angle-right.png -------------------------------------------------------------------------------- /app/assets/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/arrow-up.png -------------------------------------------------------------------------------- /app/assets/images/arrows-ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/arrows-ico.svg -------------------------------------------------------------------------------- /app/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/avatar.png -------------------------------------------------------------------------------- /app/assets/images/backoffice-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/backoffice-01.svg -------------------------------------------------------------------------------- /app/assets/images/backoffice-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/backoffice-02.svg -------------------------------------------------------------------------------- /app/assets/images/backoffice-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/backoffice-03.svg -------------------------------------------------------------------------------- /app/assets/images/bg-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/bg-blue.png -------------------------------------------------------------------------------- /app/assets/images/bg-lines-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/bg-lines-small.png -------------------------------------------------------------------------------- /app/assets/images/box-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/box-outline.svg -------------------------------------------------------------------------------- /app/assets/images/bundle-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/bundle-pic.png -------------------------------------------------------------------------------- /app/assets/images/catalog_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/catalog_icon.svg -------------------------------------------------------------------------------- /app/assets/images/catalogue_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/catalogue_logo.svg -------------------------------------------------------------------------------- /app/assets/images/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/chevron-up.svg -------------------------------------------------------------------------------- /app/assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/close.png -------------------------------------------------------------------------------- /app/assets/images/cloud-ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/cloud-ico.svg -------------------------------------------------------------------------------- /app/assets/images/cloud2-ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/cloud2-ico.svg -------------------------------------------------------------------------------- /app/assets/images/data-ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/data-ico.svg -------------------------------------------------------------------------------- /app/assets/images/empty-listy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/empty-listy.png -------------------------------------------------------------------------------- /app/assets/images/empty-projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/empty-projects.svg -------------------------------------------------------------------------------- /app/assets/images/eosc-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/eosc-img.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/gfx_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/gfx_heart.svg -------------------------------------------------------------------------------- /app/assets/images/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/globe.svg -------------------------------------------------------------------------------- /app/assets/images/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/header-bg.png -------------------------------------------------------------------------------- /app/assets/images/help-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/help-circle.svg -------------------------------------------------------------------------------- /app/assets/images/home-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/home-bg.png -------------------------------------------------------------------------------- /app/assets/images/home-card-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/home-card-bg.png -------------------------------------------------------------------------------- /app/assets/images/home-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/home-icon.svg -------------------------------------------------------------------------------- /app/assets/images/ico_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_back.svg -------------------------------------------------------------------------------- /app/assets/images/ico_chevron_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_chevron_up.svg -------------------------------------------------------------------------------- /app/assets/images/ico_collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_collapse.svg -------------------------------------------------------------------------------- /app/assets/images/ico_compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_compute.png -------------------------------------------------------------------------------- /app/assets/images/ico_contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_contact.svg -------------------------------------------------------------------------------- /app/assets/images/ico_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_data.png -------------------------------------------------------------------------------- /app/assets/images/ico_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_default.png -------------------------------------------------------------------------------- /app/assets/images/ico_expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_expand.svg -------------------------------------------------------------------------------- /app/assets/images/ico_helpdesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_helpdesk.svg -------------------------------------------------------------------------------- /app/assets/images/ico_howitworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_howitworks.png -------------------------------------------------------------------------------- /app/assets/images/ico_humanities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_humanities.png -------------------------------------------------------------------------------- /app/assets/images/ico_initiative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_initiative.png -------------------------------------------------------------------------------- /app/assets/images/ico_medical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_medical.png -------------------------------------------------------------------------------- /app/assets/images/ico_message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_message.svg -------------------------------------------------------------------------------- /app/assets/images/ico_natural.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_natural.png -------------------------------------------------------------------------------- /app/assets/images/ico_networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_networking.png -------------------------------------------------------------------------------- /app/assets/images/ico_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_other.png -------------------------------------------------------------------------------- /app/assets/images/ico_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_processing.png -------------------------------------------------------------------------------- /app/assets/images/ico_projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_projects.png -------------------------------------------------------------------------------- /app/assets/images/ico_providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_providers.png -------------------------------------------------------------------------------- /app/assets/images/ico_ra_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_ra_default.png -------------------------------------------------------------------------------- /app/assets/images/ico_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_security.png -------------------------------------------------------------------------------- /app/assets/images/ico_sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_sharing.png -------------------------------------------------------------------------------- /app/assets/images/ico_social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_social.png -------------------------------------------------------------------------------- /app/assets/images/ico_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_storage.png -------------------------------------------------------------------------------- /app/assets/images/ico_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_support.png -------------------------------------------------------------------------------- /app/assets/images/ico_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_training.png -------------------------------------------------------------------------------- /app/assets/images/ico_training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_training.svg -------------------------------------------------------------------------------- /app/assets/images/ico_trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/ico_trash.svg -------------------------------------------------------------------------------- /app/assets/images/icon-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-add.svg -------------------------------------------------------------------------------- /app/assets/images/icon-compare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-compare.svg -------------------------------------------------------------------------------- /app/assets/images/icon-contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-contact.svg -------------------------------------------------------------------------------- /app/assets/images/icon-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-document.svg -------------------------------------------------------------------------------- /app/assets/images/icon-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-edit.svg -------------------------------------------------------------------------------- /app/assets/images/icon-explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-explore.svg -------------------------------------------------------------------------------- /app/assets/images/icon-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-heart.svg -------------------------------------------------------------------------------- /app/assets/images/icon-helpdesk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-helpdesk.svg -------------------------------------------------------------------------------- /app/assets/images/icon-manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-manage.svg -------------------------------------------------------------------------------- /app/assets/images/icon-manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-manual.svg -------------------------------------------------------------------------------- /app/assets/images/icon-marketing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-marketing.svg -------------------------------------------------------------------------------- /app/assets/images/icon-maturity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-maturity.svg -------------------------------------------------------------------------------- /app/assets/images/icon-order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-order.svg -------------------------------------------------------------------------------- /app/assets/images/icon-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-pencil.png -------------------------------------------------------------------------------- /app/assets/images/icon-pricing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-pricing.svg -------------------------------------------------------------------------------- /app/assets/images/icon-privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-privacy.svg -------------------------------------------------------------------------------- /app/assets/images/icon-speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-speed.png -------------------------------------------------------------------------------- /app/assets/images/icon-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-tag.png -------------------------------------------------------------------------------- /app/assets/images/icon-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-tag.svg -------------------------------------------------------------------------------- /app/assets/images/icon-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-target.svg -------------------------------------------------------------------------------- /app/assets/images/icon-terms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-terms.svg -------------------------------------------------------------------------------- /app/assets/images/icon-training.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-training.svg -------------------------------------------------------------------------------- /app/assets/images/icon-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-trash.svg -------------------------------------------------------------------------------- /app/assets/images/icon-trending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-trending.svg -------------------------------------------------------------------------------- /app/assets/images/icon-uptime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-uptime.svg -------------------------------------------------------------------------------- /app/assets/images/icon-website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/icon-website.svg -------------------------------------------------------------------------------- /app/assets/images/lightning-ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/lightning-ico.svg -------------------------------------------------------------------------------- /app/assets/images/logo-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/logo-bg.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/main-bg-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/main-bg-dots.png -------------------------------------------------------------------------------- /app/assets/images/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/main-bg.png -------------------------------------------------------------------------------- /app/assets/images/main-box-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/main-box-bg.png -------------------------------------------------------------------------------- /app/assets/images/main-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/main-link.png -------------------------------------------------------------------------------- /app/assets/images/network-ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/network-ico.svg -------------------------------------------------------------------------------- /app/assets/images/new-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/new-feature.png -------------------------------------------------------------------------------- /app/assets/images/open-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/open-access.svg -------------------------------------------------------------------------------- /app/assets/images/profile-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/profile-img.png -------------------------------------------------------------------------------- /app/assets/images/provider_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/provider_logo.png -------------------------------------------------------------------------------- /app/assets/images/provider_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/provider_logo.svg -------------------------------------------------------------------------------- /app/assets/images/restricted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/restricted.svg -------------------------------------------------------------------------------- /app/assets/images/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/rocket.svg -------------------------------------------------------------------------------- /app/assets/images/service-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/service-pic.png -------------------------------------------------------------------------------- /app/assets/images/service_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/service_logo.png -------------------------------------------------------------------------------- /app/assets/images/service_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/service_logo.svg -------------------------------------------------------------------------------- /app/assets/images/socials-bsky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/socials-bsky.svg -------------------------------------------------------------------------------- /app/assets/images/socials-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/socials-mail.svg -------------------------------------------------------------------------------- /app/assets/images/socials-zenodo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/socials-zenodo.svg -------------------------------------------------------------------------------- /app/assets/images/t-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/t-icon.svg -------------------------------------------------------------------------------- /app/assets/images/top-line-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/top-line-bg.jpg -------------------------------------------------------------------------------- /app/assets/images/tree-indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/tree-indent.png -------------------------------------------------------------------------------- /app/assets/images/unpin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/unpin.svg -------------------------------------------------------------------------------- /app/assets/images/yt-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/images/yt-icon.svg -------------------------------------------------------------------------------- /app/assets/stylesheets/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_base.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_flash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_flash.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_fonts.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_footer.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_jira_collector.scss: -------------------------------------------------------------------------------- 1 | .atlwdg-trigger { 2 | z-index: 10000; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/_order.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_order.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_preview.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_status.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_test.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/_tours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/_tours.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/assets/stylesheets/tokens.scss -------------------------------------------------------------------------------- /app/controllers/admins_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/controllers/admins_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/tourable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/controllers/concerns/tourable.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/helps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/controllers/helps_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/ancestry_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/ancestry_helper.rb -------------------------------------------------------------------------------- /app/helpers/api_docs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/api_docs_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/attributes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/attributes_helper.rb -------------------------------------------------------------------------------- /app/helpers/bundles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/bundles_helper.rb -------------------------------------------------------------------------------- /app/helpers/catalogues_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/catalogues_helper.rb -------------------------------------------------------------------------------- /app/helpers/categories_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/categories_helper.rb -------------------------------------------------------------------------------- /app/helpers/comparisons_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/comparisons_helper.rb -------------------------------------------------------------------------------- /app/helpers/confirm_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/confirm_helper.rb -------------------------------------------------------------------------------- /app/helpers/date_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/date_helper.rb -------------------------------------------------------------------------------- /app/helpers/favourite_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/favourite_helper.rb -------------------------------------------------------------------------------- /app/helpers/formats_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/formats_helper.rb -------------------------------------------------------------------------------- /app/helpers/forms_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/forms_helper.rb -------------------------------------------------------------------------------- /app/helpers/image_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/image_helper.rb -------------------------------------------------------------------------------- /app/helpers/landing_page_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/landing_page_helper.rb -------------------------------------------------------------------------------- /app/helpers/lead_section_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/lead_section_helper.rb -------------------------------------------------------------------------------- /app/helpers/markdown_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/markdown_helper.rb -------------------------------------------------------------------------------- /app/helpers/nav_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/nav_helper.rb -------------------------------------------------------------------------------- /app/helpers/offer_mailer_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/offer_mailer_helper.rb -------------------------------------------------------------------------------- /app/helpers/order_nav_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/order_nav_helper.rb -------------------------------------------------------------------------------- /app/helpers/presentable_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/presentable_helper.rb -------------------------------------------------------------------------------- /app/helpers/project_items_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/project_items_helper.rb -------------------------------------------------------------------------------- /app/helpers/search_links_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/search_links_helper.rb -------------------------------------------------------------------------------- /app/helpers/service_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/service_helper.rb -------------------------------------------------------------------------------- /app/helpers/statistics_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/statistics_helper.rb -------------------------------------------------------------------------------- /app/helpers/status_change_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/status_change_helper.rb -------------------------------------------------------------------------------- /app/helpers/tour_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/tour_helper.rb -------------------------------------------------------------------------------- /app/helpers/url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/url_helper.rb -------------------------------------------------------------------------------- /app/helpers/validation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/helpers/validation_helper.rb -------------------------------------------------------------------------------- /app/inputs/array_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/inputs/array_input.rb -------------------------------------------------------------------------------- /app/inputs/attributes_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/inputs/attributes_input.rb -------------------------------------------------------------------------------- /app/inputs/custom_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/inputs/custom_input.rb -------------------------------------------------------------------------------- /app/inputs/date_time_picker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/inputs/date_time_picker_input.rb -------------------------------------------------------------------------------- /app/javascript/app/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/badge.js -------------------------------------------------------------------------------- /app/javascript/app/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/choices.js -------------------------------------------------------------------------------- /app/javascript/app/cookies_policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/cookies_policy.js -------------------------------------------------------------------------------- /app/javascript/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/index.js -------------------------------------------------------------------------------- /app/javascript/app/masonry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/masonry.js -------------------------------------------------------------------------------- /app/javascript/app/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/nav.js -------------------------------------------------------------------------------- /app/javascript/app/sort_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/sort_filter.js -------------------------------------------------------------------------------- /app/javascript/app/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/tabs.js -------------------------------------------------------------------------------- /app/javascript/app/tours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/tours.js -------------------------------------------------------------------------------- /app/javascript/app/user_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/app/user_action.js -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/designsystem.js: -------------------------------------------------------------------------------- 1 | import "./designsystem"; 2 | -------------------------------------------------------------------------------- /app/javascript/designsystem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/javascript/designsystem/index.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/datasource/delete_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/datasource/delete_job.rb -------------------------------------------------------------------------------- /app/jobs/ess/update_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/ess/update_job.rb -------------------------------------------------------------------------------- /app/jobs/jms/manage_message_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/jms/manage_message_job.rb -------------------------------------------------------------------------------- /app/jobs/jms/publish_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/jms/publish_job.rb -------------------------------------------------------------------------------- /app/jobs/matomo/send_request_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/matomo/send_request_job.rb -------------------------------------------------------------------------------- /app/jobs/oms/call_trigger_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/oms/call_trigger_job.rb -------------------------------------------------------------------------------- /app/jobs/probes/probes_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/probes/probes_job.rb -------------------------------------------------------------------------------- /app/jobs/project/jira_update_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/project/jira_update_job.rb -------------------------------------------------------------------------------- /app/jobs/project_item/ready_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/project_item/ready_job.rb -------------------------------------------------------------------------------- /app/jobs/provider/delete_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/provider/delete_job.rb -------------------------------------------------------------------------------- /app/jobs/report/report_create_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/report/report_create_job.rb -------------------------------------------------------------------------------- /app/jobs/service/delete_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/jobs/service/delete_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/message_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/mailers/message_mailer.rb -------------------------------------------------------------------------------- /app/mailers/offer_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/mailers/offer_mailer.rb -------------------------------------------------------------------------------- /app/mailers/project_item_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/mailers/project_item_mailer.rb -------------------------------------------------------------------------------- /app/mailers/provider_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/mailers/provider_mailer.rb -------------------------------------------------------------------------------- /app/mailers/service_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/mailers/service_mailer.rb -------------------------------------------------------------------------------- /app/models/alternative_identifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/alternative_identifier.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/approval_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/approval_request.rb -------------------------------------------------------------------------------- /app/models/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/attribute.rb -------------------------------------------------------------------------------- /app/models/attribute/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/attribute/date.rb -------------------------------------------------------------------------------- /app/models/attribute/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/attribute/input.rb -------------------------------------------------------------------------------- /app/models/attribute/multiselect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/attribute/multiselect.rb -------------------------------------------------------------------------------- /app/models/attribute/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/attribute/range.rb -------------------------------------------------------------------------------- /app/models/attribute/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/attribute/select.rb -------------------------------------------------------------------------------- /app/models/bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/bundle.rb -------------------------------------------------------------------------------- /app/models/bundle_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/bundle_category.rb -------------------------------------------------------------------------------- /app/models/bundle_offer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/bundle_offer.rb -------------------------------------------------------------------------------- /app/models/bundle_target_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/bundle_target_user.rb -------------------------------------------------------------------------------- /app/models/bundle_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/bundle_vocabulary.rb -------------------------------------------------------------------------------- /app/models/catalogue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/catalogue.rb -------------------------------------------------------------------------------- /app/models/catalogue_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/catalogue_source.rb -------------------------------------------------------------------------------- /app/models/catalogue_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/catalogue_vocabulary.rb -------------------------------------------------------------------------------- /app/models/categorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/categorization.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/approvable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/approvable.rb -------------------------------------------------------------------------------- /app/models/concerns/eventable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/eventable.rb -------------------------------------------------------------------------------- /app/models/concerns/importable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/importable.rb -------------------------------------------------------------------------------- /app/models/concerns/messageable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/messageable.rb -------------------------------------------------------------------------------- /app/models/concerns/offerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/offerable.rb -------------------------------------------------------------------------------- /app/models/concerns/parentable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/parentable.rb -------------------------------------------------------------------------------- /app/models/concerns/presentable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/presentable.rb -------------------------------------------------------------------------------- /app/models/concerns/propagable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/propagable.rb -------------------------------------------------------------------------------- /app/models/concerns/publishable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/publishable.rb -------------------------------------------------------------------------------- /app/models/concerns/statusable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/statusable.rb -------------------------------------------------------------------------------- /app/models/concerns/viewable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/concerns/viewable.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/country.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/country.rb -------------------------------------------------------------------------------- /app/models/data_administrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/data_administrator.rb -------------------------------------------------------------------------------- /app/models/datasource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/datasource.rb -------------------------------------------------------------------------------- /app/models/deployable_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/deployable_service.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter.rb -------------------------------------------------------------------------------- /app/models/filter/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/location.rb -------------------------------------------------------------------------------- /app/models/filter/multiselect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/multiselect.rb -------------------------------------------------------------------------------- /app/models/filter/order_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/order_type.rb -------------------------------------------------------------------------------- /app/models/filter/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/platform.rb -------------------------------------------------------------------------------- /app/models/filter/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/provider.rb -------------------------------------------------------------------------------- /app/models/filter/rating.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/rating.rb -------------------------------------------------------------------------------- /app/models/filter/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/status.rb -------------------------------------------------------------------------------- /app/models/filter/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/tag.rb -------------------------------------------------------------------------------- /app/models/filter/target_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/target_user.rb -------------------------------------------------------------------------------- /app/models/filter/upstream_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/filter/upstream_source.rb -------------------------------------------------------------------------------- /app/models/google/analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/google/analytics.rb -------------------------------------------------------------------------------- /app/models/guideline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/guideline.rb -------------------------------------------------------------------------------- /app/models/help_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/help_item.rb -------------------------------------------------------------------------------- /app/models/help_section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/help_section.rb -------------------------------------------------------------------------------- /app/models/home_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/home_page.rb -------------------------------------------------------------------------------- /app/models/jira/checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/jira/checker.rb -------------------------------------------------------------------------------- /app/models/jira/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/jira/client.rb -------------------------------------------------------------------------------- /app/models/lead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/lead.rb -------------------------------------------------------------------------------- /app/models/lead_section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/lead_section.rb -------------------------------------------------------------------------------- /app/models/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/link.rb -------------------------------------------------------------------------------- /app/models/link/multimedia_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/link/multimedia_url.rb -------------------------------------------------------------------------------- /app/models/link/use_cases_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/link/use_cases_url.rb -------------------------------------------------------------------------------- /app/models/main_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/main_contact.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/observed_user_offer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/observed_user_offer.rb -------------------------------------------------------------------------------- /app/models/offer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/offer.rb -------------------------------------------------------------------------------- /app/models/offer/oms_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/offer/oms_params.rb -------------------------------------------------------------------------------- /app/models/offer/parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/offer/parameters.rb -------------------------------------------------------------------------------- /app/models/offer_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/offer_category.rb -------------------------------------------------------------------------------- /app/models/offer_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/offer_vocabulary.rb -------------------------------------------------------------------------------- /app/models/oms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/oms.rb -------------------------------------------------------------------------------- /app/models/oms/authorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/oms/authorization.rb -------------------------------------------------------------------------------- /app/models/oms/trigger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/oms/trigger.rb -------------------------------------------------------------------------------- /app/models/oms_administration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/oms_administration.rb -------------------------------------------------------------------------------- /app/models/oms_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/oms_provider.rb -------------------------------------------------------------------------------- /app/models/parameter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter.rb -------------------------------------------------------------------------------- /app/models/parameter/constant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/constant.rb -------------------------------------------------------------------------------- /app/models/parameter/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/date.rb -------------------------------------------------------------------------------- /app/models/parameter/input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/input.rb -------------------------------------------------------------------------------- /app/models/parameter/minmax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/minmax.rb -------------------------------------------------------------------------------- /app/models/parameter/multiselect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/multiselect.rb -------------------------------------------------------------------------------- /app/models/parameter/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/range.rb -------------------------------------------------------------------------------- /app/models/parameter/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/select.rb -------------------------------------------------------------------------------- /app/models/parameter/values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/parameter/values.rb -------------------------------------------------------------------------------- /app/models/platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/platform.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/project_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/project_item.rb -------------------------------------------------------------------------------- /app/models/project_item/iid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/project_item/iid.rb -------------------------------------------------------------------------------- /app/models/project_item/part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/project_item/part.rb -------------------------------------------------------------------------------- /app/models/project_item/wizard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/project_item/wizard.rb -------------------------------------------------------------------------------- /app/models/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/provider.rb -------------------------------------------------------------------------------- /app/models/provider/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/provider/question.rb -------------------------------------------------------------------------------- /app/models/provider_catalogue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/provider_catalogue.rb -------------------------------------------------------------------------------- /app/models/provider_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/provider_source.rb -------------------------------------------------------------------------------- /app/models/provider_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/provider_vocabulary.rb -------------------------------------------------------------------------------- /app/models/public_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/public_contact.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/report/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/report/client.rb -------------------------------------------------------------------------------- /app/models/research_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/research_product.rb -------------------------------------------------------------------------------- /app/models/scientific_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/scientific_domain.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/service/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service/question.rb -------------------------------------------------------------------------------- /app/models/service/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service/search.rb -------------------------------------------------------------------------------- /app/models/service_catalogue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_catalogue.rb -------------------------------------------------------------------------------- /app/models/service_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_context.rb -------------------------------------------------------------------------------- /app/models/service_guideline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_guideline.rb -------------------------------------------------------------------------------- /app/models/service_opinion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_opinion.rb -------------------------------------------------------------------------------- /app/models/service_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_provider.rb -------------------------------------------------------------------------------- /app/models/service_relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_relationship.rb -------------------------------------------------------------------------------- /app/models/service_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_source.rb -------------------------------------------------------------------------------- /app/models/service_target_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_target_user.rb -------------------------------------------------------------------------------- /app/models/service_vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/service_vocabulary.rb -------------------------------------------------------------------------------- /app/models/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/status.rb -------------------------------------------------------------------------------- /app/models/target_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/target_user.rb -------------------------------------------------------------------------------- /app/models/tour_feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/tour_feedback.rb -------------------------------------------------------------------------------- /app/models/tour_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/tour_history.rb -------------------------------------------------------------------------------- /app/models/usage_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/usage_report.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user/checkin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/user/checkin.rb -------------------------------------------------------------------------------- /app/models/user_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/user_category.rb -------------------------------------------------------------------------------- /app/models/user_scientific_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/user_scientific_domain.rb -------------------------------------------------------------------------------- /app/models/user_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/user_service.rb -------------------------------------------------------------------------------- /app/models/vocabulary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary.rb -------------------------------------------------------------------------------- /app/models/vocabulary/access_mode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/access_mode.rb -------------------------------------------------------------------------------- /app/models/vocabulary/access_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/access_type.rb -------------------------------------------------------------------------------- /app/models/vocabulary/bundle_goal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/bundle_goal.rb -------------------------------------------------------------------------------- /app/models/vocabulary/entity_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/entity_type.rb -------------------------------------------------------------------------------- /app/models/vocabulary/esfri_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/esfri_type.rb -------------------------------------------------------------------------------- /app/models/vocabulary/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/network.rb -------------------------------------------------------------------------------- /app/models/vocabulary/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/node.rb -------------------------------------------------------------------------------- /app/models/vocabulary/trl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/models/vocabulary/trl.rb -------------------------------------------------------------------------------- /app/policies/admin/admin_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/admin/admin_policy.rb -------------------------------------------------------------------------------- /app/policies/admin/lead_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/admin/lead_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v1/ess_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/api/v1/ess_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v1/event_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/api/v1/event_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v1/offer_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/api/v1/offer_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v1/oms_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/api/v1/oms_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v1/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/api/v1/user_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/bundle_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/bundle_policy.rb -------------------------------------------------------------------------------- /app/policies/catalogue_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/catalogue_policy.rb -------------------------------------------------------------------------------- /app/policies/datasource_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/datasource_policy.rb -------------------------------------------------------------------------------- /app/policies/help_section_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/help_section_policy.rb -------------------------------------------------------------------------------- /app/policies/lead_section_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/lead_section_policy.rb -------------------------------------------------------------------------------- /app/policies/message_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/message_policy.rb -------------------------------------------------------------------------------- /app/policies/offer_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/offer_policy.rb -------------------------------------------------------------------------------- /app/policies/project_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/project_policy.rb -------------------------------------------------------------------------------- /app/policies/provider_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/provider_policy.rb -------------------------------------------------------------------------------- /app/policies/service_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/service_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/services/bundle/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/bundle/create.rb -------------------------------------------------------------------------------- /app/services/bundle/destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/bundle/destroy.rb -------------------------------------------------------------------------------- /app/services/bundle/draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/bundle/draft.rb -------------------------------------------------------------------------------- /app/services/bundle/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/bundle/publish.rb -------------------------------------------------------------------------------- /app/services/bundle/unpublish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/bundle/unpublish.rb -------------------------------------------------------------------------------- /app/services/bundle/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/bundle/update.rb -------------------------------------------------------------------------------- /app/services/catalogue/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/catalogue/create.rb -------------------------------------------------------------------------------- /app/services/catalogue/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/catalogue/delete.rb -------------------------------------------------------------------------------- /app/services/catalogue/draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/catalogue/draft.rb -------------------------------------------------------------------------------- /app/services/catalogue/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/catalogue/publish.rb -------------------------------------------------------------------------------- /app/services/catalogue/suspend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/catalogue/suspend.rb -------------------------------------------------------------------------------- /app/services/catalogue/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/catalogue/update.rb -------------------------------------------------------------------------------- /app/services/datasource/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/datasource/delete.rb -------------------------------------------------------------------------------- /app/services/ess/add.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/ess/add.rb -------------------------------------------------------------------------------- /app/services/ess/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/ess/delete.rb -------------------------------------------------------------------------------- /app/services/ess/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/ess/update.rb -------------------------------------------------------------------------------- /app/services/importers/logo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/importers/logo.rb -------------------------------------------------------------------------------- /app/services/importers/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/importers/provider.rb -------------------------------------------------------------------------------- /app/services/importers/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/importers/request.rb -------------------------------------------------------------------------------- /app/services/importers/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/importers/service.rb -------------------------------------------------------------------------------- /app/services/importers/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/importers/token.rb -------------------------------------------------------------------------------- /app/services/jira/issue_updated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/jira/issue_updated.rb -------------------------------------------------------------------------------- /app/services/jms/do_publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/jms/do_publish.rb -------------------------------------------------------------------------------- /app/services/jms/manage_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/jms/manage_message.rb -------------------------------------------------------------------------------- /app/services/jms/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/jms/publish.rb -------------------------------------------------------------------------------- /app/services/jms/publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/jms/publisher.rb -------------------------------------------------------------------------------- /app/services/message/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/message/create.rb -------------------------------------------------------------------------------- /app/services/offer/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/create.rb -------------------------------------------------------------------------------- /app/services/offer/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/delete.rb -------------------------------------------------------------------------------- /app/services/offer/destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/destroy.rb -------------------------------------------------------------------------------- /app/services/offer/draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/draft.rb -------------------------------------------------------------------------------- /app/services/offer/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/publish.rb -------------------------------------------------------------------------------- /app/services/offer/unpublish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/unpublish.rb -------------------------------------------------------------------------------- /app/services/offer/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/offer/update.rb -------------------------------------------------------------------------------- /app/services/probes/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/probes/create.rb -------------------------------------------------------------------------------- /app/services/profile/destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/profile/destroy.rb -------------------------------------------------------------------------------- /app/services/profile/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/profile/update.rb -------------------------------------------------------------------------------- /app/services/project/archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/project/archive.rb -------------------------------------------------------------------------------- /app/services/project/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/project/create.rb -------------------------------------------------------------------------------- /app/services/project/destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/project/destroy.rb -------------------------------------------------------------------------------- /app/services/project/register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/project/register.rb -------------------------------------------------------------------------------- /app/services/project/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/project/update.rb -------------------------------------------------------------------------------- /app/services/project_item/ready.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/project_item/ready.rb -------------------------------------------------------------------------------- /app/services/provider/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/create.rb -------------------------------------------------------------------------------- /app/services/provider/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/delete.rb -------------------------------------------------------------------------------- /app/services/provider/draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/draft.rb -------------------------------------------------------------------------------- /app/services/provider/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/publish.rb -------------------------------------------------------------------------------- /app/services/provider/suspend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/suspend.rb -------------------------------------------------------------------------------- /app/services/provider/unpublish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/unpublish.rb -------------------------------------------------------------------------------- /app/services/provider/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/provider/update.rb -------------------------------------------------------------------------------- /app/services/report/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/report/create.rb -------------------------------------------------------------------------------- /app/services/report/register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/report/register.rb -------------------------------------------------------------------------------- /app/services/service/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/create.rb -------------------------------------------------------------------------------- /app/services/service/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/delete.rb -------------------------------------------------------------------------------- /app/services/service/destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/destroy.rb -------------------------------------------------------------------------------- /app/services/service/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/publish.rb -------------------------------------------------------------------------------- /app/services/service/suspend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/suspend.rb -------------------------------------------------------------------------------- /app/services/service/unpublish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/unpublish.rb -------------------------------------------------------------------------------- /app/services/service/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/service/update.rb -------------------------------------------------------------------------------- /app/services/trigger/call.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/services/trigger/call.rb -------------------------------------------------------------------------------- /app/types/array_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/types/array_type.rb -------------------------------------------------------------------------------- /app/validators/array_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/validators/array_validator.rb -------------------------------------------------------------------------------- /app/validators/mp_url_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/validators/mp_url_validator.rb -------------------------------------------------------------------------------- /app/views/admins/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/admins/show.html.haml -------------------------------------------------------------------------------- /app/views/api_docs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/api_docs/show.html.haml -------------------------------------------------------------------------------- /app/views/backoffice/providers/form/_legal_status.html.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_classification.html.haml: -------------------------------------------------------------------------------- 1 | classification 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_contacts.html.haml: -------------------------------------------------------------------------------- 1 | contact 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_dependencies.html.haml: -------------------------------------------------------------------------------- 1 | dependencies 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_location.html.haml: -------------------------------------------------------------------------------- 1 | location 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_managers.haml: -------------------------------------------------------------------------------- 1 | admin 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_marketing.html.haml: -------------------------------------------------------------------------------- 1 | marketing 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_maturity.html.haml: -------------------------------------------------------------------------------- 1 | maturity 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/tabs/_other.html.haml: -------------------------------------------------------------------------------- 1 | other 2 | -------------------------------------------------------------------------------- /app/views/backoffice/providers/update.turbo_stream.haml: -------------------------------------------------------------------------------- 1 | = render_turbo_stream_flash 2 | -------------------------------------------------------------------------------- /app/views/helps/_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/helps/_item.html.haml -------------------------------------------------------------------------------- /app/views/helps/_section.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/helps/_section.html.haml -------------------------------------------------------------------------------- /app/views/helps/_toc.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/helps/_toc.html.haml -------------------------------------------------------------------------------- /app/views/helps/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/helps/show.html.haml -------------------------------------------------------------------------------- /app/views/home/_info.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/home/_info.html.haml -------------------------------------------------------------------------------- /app/views/home/_opinions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/home/_opinions.html.haml -------------------------------------------------------------------------------- /app/views/home/_products.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/home/_products.html.haml -------------------------------------------------------------------------------- /app/views/home/_services.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/home/_services.html.haml -------------------------------------------------------------------------------- /app/views/home/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/home/index.html.haml -------------------------------------------------------------------------------- /app/views/home/service/_card.html.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/_badge.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/_badge.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_flash.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/_flash.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_head.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/_head.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_popup.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/_popup.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_tour.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/_tour.erb -------------------------------------------------------------------------------- /app/views/layouts/admin.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/admin.html.haml -------------------------------------------------------------------------------- /app/views/layouts/clear.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/clear.html.haml -------------------------------------------------------------------------------- /app/views/layouts/common_parts/services/_default_parameters.html.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/mailer.html.haml -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/mailer.text.haml -------------------------------------------------------------------------------- /app/views/layouts/order.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/layouts/order.html.haml -------------------------------------------------------------------------------- /app/views/leads/_error.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/leads/_error.html.haml -------------------------------------------------------------------------------- /app/views/leads/_section.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/leads/_section.html.haml -------------------------------------------------------------------------------- /app/views/pages/_card.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/pages/_card.html.haml -------------------------------------------------------------------------------- /app/views/pages/about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/pages/about.html.haml -------------------------------------------------------------------------------- /app/views/parameters/template/_date.html.haml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/views/profiles/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/profiles/_form.html.haml -------------------------------------------------------------------------------- /app/views/profiles/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/profiles/edit.html.haml -------------------------------------------------------------------------------- /app/views/profiles/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/profiles/show.html.haml -------------------------------------------------------------------------------- /app/views/project_item_mailer/activate_message.html.haml: -------------------------------------------------------------------------------- 1 | %p Dear User, 2 | %p 3 | #{@activate_message} 4 | -------------------------------------------------------------------------------- /app/views/project_item_mailer/activate_message.text.haml: -------------------------------------------------------------------------------- 1 | Dear User, 2 | \ 3 | #{@activate_message} 4 | -------------------------------------------------------------------------------- /app/views/projects/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/projects/_form.html.haml -------------------------------------------------------------------------------- /app/views/projects/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/projects/edit.html.haml -------------------------------------------------------------------------------- /app/views/projects/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/projects/index.html.haml -------------------------------------------------------------------------------- /app/views/projects/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/projects/new.html.haml -------------------------------------------------------------------------------- /app/views/projects/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/projects/show.html.haml -------------------------------------------------------------------------------- /app/views/providers/_tabs.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/providers/_tabs.haml -------------------------------------------------------------------------------- /app/views/providers/questions/create.turbo_stream.haml: -------------------------------------------------------------------------------- 1 | = render_turbo_stream_flash 2 | -------------------------------------------------------------------------------- /app/views/providers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/providers/show.html.haml -------------------------------------------------------------------------------- /app/views/reports/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/reports/_form.html.haml -------------------------------------------------------------------------------- /app/views/services/_paginate.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/services/_paginate.haml -------------------------------------------------------------------------------- /app/views/services/_tabs.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/services/_tabs.haml -------------------------------------------------------------------------------- /app/views/services/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/services/index.html.haml -------------------------------------------------------------------------------- /app/views/services/questions/create.turbo_stream.haml: -------------------------------------------------------------------------------- 1 | = render_turbo_stream_flash 2 | -------------------------------------------------------------------------------- /app/views/services/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/app/views/services/show.html.haml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/importmap -------------------------------------------------------------------------------- /bin/jms-subscriber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/jms-subscriber -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/server -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/breadcrumbs/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/breadcrumbs/admin.rb -------------------------------------------------------------------------------- /config/breadcrumbs/backoffice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/breadcrumbs/backoffice.rb -------------------------------------------------------------------------------- /config/breadcrumbs/marketplace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/breadcrumbs/marketplace.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/eosc_explore_banner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/eosc_explore_banner.yml -------------------------------------------------------------------------------- /config/esbuild.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/esbuild.config.js -------------------------------------------------------------------------------- /config/ess_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/ess_update.yml -------------------------------------------------------------------------------- /config/initializers/active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/active_job.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/constants.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/pagy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/pagy.rb -------------------------------------------------------------------------------- /config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /config/initializers/rswag_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/rswag_api.rb -------------------------------------------------------------------------------- /config/initializers/rswag_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/rswag_ui.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/tours.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/tours.rb -------------------------------------------------------------------------------- /config/initializers/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/initializers/types.rb -------------------------------------------------------------------------------- /config/jira.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/jira.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/pundit.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/pundit.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/tours.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/tours.en.yml -------------------------------------------------------------------------------- /config/locales/views.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/views.yml -------------------------------------------------------------------------------- /config/locales/views/admin/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/views/admin/en.yml -------------------------------------------------------------------------------- /config/locales/views/home/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/views/home/en.yml -------------------------------------------------------------------------------- /config/locales/views/offers/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/views/offers/en.yml -------------------------------------------------------------------------------- /config/locales/views/pages/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/locales/views/pages/en.yml -------------------------------------------------------------------------------- /config/offer_parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/offer_parameters.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/robots.development.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /config/robots.production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/robots.production.txt -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/stomp_publisher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/stomp_publisher.yml -------------------------------------------------------------------------------- /config/stomp_subscriber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/stomp_subscriber.yml -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/tours.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours.yml -------------------------------------------------------------------------------- /config/tours/details/index.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours/details/index.en.yml -------------------------------------------------------------------------------- /config/tours/home/index.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours/home/index.en.yml -------------------------------------------------------------------------------- /config/tours/profiles/edit.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours/profiles/edit.en.yml -------------------------------------------------------------------------------- /config/tours/profiles/show.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours/profiles/show.en.yml -------------------------------------------------------------------------------- /config/tours/services/index.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours/services/index.en.yml -------------------------------------------------------------------------------- /config/tours/services/show.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/tours/services/show.en.yml -------------------------------------------------------------------------------- /config/xgus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/config/xgus.yml -------------------------------------------------------------------------------- /db/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/data.yml -------------------------------------------------------------------------------- /db/data_e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/data_e2e.yml -------------------------------------------------------------------------------- /db/internal_vocabulary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/internal_vocabulary.yml -------------------------------------------------------------------------------- /db/logos/SpotOn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/SpotOn-logo.png -------------------------------------------------------------------------------- /db/logos/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/alien.png -------------------------------------------------------------------------------- /db/logos/amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/amber.png -------------------------------------------------------------------------------- /db/logos/apache-tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/apache-tomcat.png -------------------------------------------------------------------------------- /db/logos/archive-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/archive-storage.png -------------------------------------------------------------------------------- /db/logos/argo-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/argo-data.png -------------------------------------------------------------------------------- /db/logos/autodock-vina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/autodock-vina.png -------------------------------------------------------------------------------- /db/logos/b2access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2access.png -------------------------------------------------------------------------------- /db/logos/b2drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2drop.png -------------------------------------------------------------------------------- /db/logos/b2find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2find.png -------------------------------------------------------------------------------- /db/logos/b2handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2handle.png -------------------------------------------------------------------------------- /db/logos/b2note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2note.png -------------------------------------------------------------------------------- /db/logos/b2safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2safe.png -------------------------------------------------------------------------------- /db/logos/b2share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2share.png -------------------------------------------------------------------------------- /db/logos/b2stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/b2stage.png -------------------------------------------------------------------------------- /db/logos/chipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/chipster.png -------------------------------------------------------------------------------- /db/logos/chronos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/chronos.png -------------------------------------------------------------------------------- /db/logos/cloud-compute-offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/cloud-compute-offer.png -------------------------------------------------------------------------------- /db/logos/cloud-compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/cloud-compute.png -------------------------------------------------------------------------------- /db/logos/cloud-ferro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/cloud-ferro.png -------------------------------------------------------------------------------- /db/logos/clustalw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/clustalw2.png -------------------------------------------------------------------------------- /db/logos/cs-rosetta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/cs-rosetta.png -------------------------------------------------------------------------------- /db/logos/d4science-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/d4science-gateway.png -------------------------------------------------------------------------------- /db/logos/dariah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/dariah.png -------------------------------------------------------------------------------- /db/logos/disvis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/disvis.png -------------------------------------------------------------------------------- /db/logos/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/docker.png -------------------------------------------------------------------------------- /db/logos/ePouta-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/ePouta-logo.jpg -------------------------------------------------------------------------------- /db/logos/ec3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/ec3.png -------------------------------------------------------------------------------- /db/logos/eodc-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/eodc-jupyter.png -------------------------------------------------------------------------------- /db/logos/eodc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/eodc.png -------------------------------------------------------------------------------- /db/logos/fanten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/fanten.png -------------------------------------------------------------------------------- /db/logos/fitsm-all-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/fitsm-all-services.png -------------------------------------------------------------------------------- /db/logos/fitsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/fitsm.png -------------------------------------------------------------------------------- /db/logos/galaxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/galaxy.png -------------------------------------------------------------------------------- /db/logos/geo-dab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/geo-dab.jpg -------------------------------------------------------------------------------- /db/logos/geoss-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/geoss-portal.png -------------------------------------------------------------------------------- /db/logos/gep-alpine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/gep-alpine.png -------------------------------------------------------------------------------- /db/logos/gep-eo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/gep-eo.png -------------------------------------------------------------------------------- /db/logos/gep-hrcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/gep-hrcm.png -------------------------------------------------------------------------------- /db/logos/gnu-octave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/gnu-octave.png -------------------------------------------------------------------------------- /db/logos/gnuplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/gnuplot.png -------------------------------------------------------------------------------- /db/logos/haddock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/haddock.png -------------------------------------------------------------------------------- /db/logos/hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/hadoop.png -------------------------------------------------------------------------------- /db/logos/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/jupyter.png -------------------------------------------------------------------------------- /db/logos/lrs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/lrs-logo.png -------------------------------------------------------------------------------- /db/logos/marathon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/marathon.png -------------------------------------------------------------------------------- /db/logos/mea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/mea.png -------------------------------------------------------------------------------- /db/logos/namd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/namd.png -------------------------------------------------------------------------------- /db/logos/opencoasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/opencoasts.png -------------------------------------------------------------------------------- /db/logos/panData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/panData.png -------------------------------------------------------------------------------- /db/logos/panFaas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/panFaas.png -------------------------------------------------------------------------------- /db/logos/powerfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/powerfit.png -------------------------------------------------------------------------------- /db/logos/prominence-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/prominence-logo.png -------------------------------------------------------------------------------- /db/logos/rasdaman-eo-datacube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/rasdaman-eo-datacube.png -------------------------------------------------------------------------------- /db/logos/sentinel-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/sentinel-hub.png -------------------------------------------------------------------------------- /db/logos/spoton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/spoton.png -------------------------------------------------------------------------------- /db/logos/vcr-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/vcr-logo.png -------------------------------------------------------------------------------- /db/logos/vlo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/vlo-logo.png -------------------------------------------------------------------------------- /db/logos/vre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/vre.png -------------------------------------------------------------------------------- /db/logos/wspgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/logos/wspgrade.png -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/vocabulary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/db/vocabulary.yml -------------------------------------------------------------------------------- /docker-compose-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docker-compose-e2e.yml -------------------------------------------------------------------------------- /docker-compose-x64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docker-compose-x64.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/diagrams/Ordering Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/diagrams/Ordering Process.png -------------------------------------------------------------------------------- /docs/jira_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/jira_integration.md -------------------------------------------------------------------------------- /docs/upgrade/2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/2.0.0.md -------------------------------------------------------------------------------- /docs/upgrade/2.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/2.10.0.md -------------------------------------------------------------------------------- /docs/upgrade/2.10.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/2.10.3.md -------------------------------------------------------------------------------- /docs/upgrade/2.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/2.11.0.md -------------------------------------------------------------------------------- /docs/upgrade/2.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/2.12.0.md -------------------------------------------------------------------------------- /docs/upgrade/2.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/2.7.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.10.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.11.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.11.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.12.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.12.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.15.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.17.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.17.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.26.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.26.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.29.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.29.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.33.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.33.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.38.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.38.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.43.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.43.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.46.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.46.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.47.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.47.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.48.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.48.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.51.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.51.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.52.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.52.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.53.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.53.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.55.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.55.3.md -------------------------------------------------------------------------------- /docs/upgrade/3.56.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.56.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.57.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.57.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.58.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.58.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.7.0.md -------------------------------------------------------------------------------- /docs/upgrade/3.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/docs/upgrade/3.9.0.md -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/eosc-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/assets/eosc-img.png -------------------------------------------------------------------------------- /lib/config_loader_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/config_loader_helper.rb -------------------------------------------------------------------------------- /lib/custom_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/custom_failure.rb -------------------------------------------------------------------------------- /lib/import/catalogues.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/catalogues.rb -------------------------------------------------------------------------------- /lib/import/datasources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/datasources.rb -------------------------------------------------------------------------------- /lib/import/deployable_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/deployable_services.rb -------------------------------------------------------------------------------- /lib/import/guidelines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/guidelines.rb -------------------------------------------------------------------------------- /lib/import/providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/providers.rb -------------------------------------------------------------------------------- /lib/import/resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/resources.rb -------------------------------------------------------------------------------- /lib/import/vocabularies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/import/vocabularies.rb -------------------------------------------------------------------------------- /lib/jira/console_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/jira/console_checker.rb -------------------------------------------------------------------------------- /lib/jira/project_migrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/jira/project_migrator.rb -------------------------------------------------------------------------------- /lib/jira/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/jira/setup.rb -------------------------------------------------------------------------------- /lib/jms/subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/jms/subscriber.rb -------------------------------------------------------------------------------- /lib/monitoring_data/fetch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/monitoring_data/fetch.rb -------------------------------------------------------------------------------- /lib/ordering_api/add_sombo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/ordering_api/add_sombo.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/active_storage.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/active_storage.rake -------------------------------------------------------------------------------- /lib/tasks/cookies_migrator.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/cookies_migrator.rake -------------------------------------------------------------------------------- /lib/tasks/counter_cache.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/counter_cache.rake -------------------------------------------------------------------------------- /lib/tasks/default_offer.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/default_offer.rake -------------------------------------------------------------------------------- /lib/tasks/dev.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/dev.rake -------------------------------------------------------------------------------- /lib/tasks/ess.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/ess.rake -------------------------------------------------------------------------------- /lib/tasks/friendly_id.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/friendly_id.rake -------------------------------------------------------------------------------- /lib/tasks/gettext.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/gettext.rake -------------------------------------------------------------------------------- /lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/import.rake -------------------------------------------------------------------------------- /lib/tasks/jira.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/jira.rake -------------------------------------------------------------------------------- /lib/tasks/migration.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/migration.rake -------------------------------------------------------------------------------- /lib/tasks/monitoring_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/monitoring_data.rake -------------------------------------------------------------------------------- /lib/tasks/ordering_api.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/ordering_api.rake -------------------------------------------------------------------------------- /lib/tasks/rdt.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/rdt.rake -------------------------------------------------------------------------------- /lib/tasks/recommender.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/recommender.rake -------------------------------------------------------------------------------- /lib/tasks/sidekiq.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/sidekiq.rake -------------------------------------------------------------------------------- /lib/tasks/statuses.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/statuses.rake -------------------------------------------------------------------------------- /lib/tasks/stimulus_test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/stimulus_test.rake -------------------------------------------------------------------------------- /lib/tasks/test_bootstrap.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/test_bootstrap.rake -------------------------------------------------------------------------------- /lib/tasks/viewable.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/viewable.rake -------------------------------------------------------------------------------- /lib/tasks/whitelabel.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/whitelabel.rake -------------------------------------------------------------------------------- /lib/tasks/xgus.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/tasks/xgus.rake -------------------------------------------------------------------------------- /lib/xgus/checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/lib/xgus/checker.rb -------------------------------------------------------------------------------- /locale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solr/config/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/solr/config/solr.xml -------------------------------------------------------------------------------- /solr/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/solr/docker-compose.yml -------------------------------------------------------------------------------- /spec/factories/bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/bundle.rb -------------------------------------------------------------------------------- /spec/factories/catalogue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/catalogue.rb -------------------------------------------------------------------------------- /spec/factories/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/categories.rb -------------------------------------------------------------------------------- /spec/factories/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/event.rb -------------------------------------------------------------------------------- /spec/factories/help_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/help_items.rb -------------------------------------------------------------------------------- /spec/factories/help_sections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/help_sections.rb -------------------------------------------------------------------------------- /spec/factories/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/images/test.png -------------------------------------------------------------------------------- /spec/factories/jms_json_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/jms_json_service.rb -------------------------------------------------------------------------------- /spec/factories/jms_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/jms_service.rb -------------------------------------------------------------------------------- /spec/factories/lead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/lead.rb -------------------------------------------------------------------------------- /spec/factories/lead_section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/lead_section.rb -------------------------------------------------------------------------------- /spec/factories/main_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/main_contact.rb -------------------------------------------------------------------------------- /spec/factories/messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/messages.rb -------------------------------------------------------------------------------- /spec/factories/offers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/offers.rb -------------------------------------------------------------------------------- /spec/factories/omses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/omses.rb -------------------------------------------------------------------------------- /spec/factories/omses/triggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/omses/triggers.rb -------------------------------------------------------------------------------- /spec/factories/parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/parameters.rb -------------------------------------------------------------------------------- /spec/factories/platforms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/platforms.rb -------------------------------------------------------------------------------- /spec/factories/project_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/project_items.rb -------------------------------------------------------------------------------- /spec/factories/projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/projects.rb -------------------------------------------------------------------------------- /spec/factories/provider_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/provider_sources.rb -------------------------------------------------------------------------------- /spec/factories/providers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/providers.rb -------------------------------------------------------------------------------- /spec/factories/public_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/public_contact.rb -------------------------------------------------------------------------------- /spec/factories/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/report.rb -------------------------------------------------------------------------------- /spec/factories/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/response.rb -------------------------------------------------------------------------------- /spec/factories/service_opinion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/service_opinion.rb -------------------------------------------------------------------------------- /spec/factories/service_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/service_sources.rb -------------------------------------------------------------------------------- /spec/factories/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/services.rb -------------------------------------------------------------------------------- /spec/factories/statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/statuses.rb -------------------------------------------------------------------------------- /spec/factories/target_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/target_users.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/api_docs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/api_docs_spec.rb -------------------------------------------------------------------------------- /spec/features/backoffice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/backoffice_spec.rb -------------------------------------------------------------------------------- /spec/features/categories_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/categories_spec.rb -------------------------------------------------------------------------------- /spec/features/comparison_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/comparison_spec.rb -------------------------------------------------------------------------------- /spec/features/favourite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/favourite_spec.rb -------------------------------------------------------------------------------- /spec/features/filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/filter_spec.rb -------------------------------------------------------------------------------- /spec/features/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/help_spec.rb -------------------------------------------------------------------------------- /spec/features/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/home_spec.rb -------------------------------------------------------------------------------- /spec/features/my_services_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/my_services_spec.rb -------------------------------------------------------------------------------- /spec/features/opinions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/opinions_spec.rb -------------------------------------------------------------------------------- /spec/features/order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/order_spec.rb -------------------------------------------------------------------------------- /spec/features/profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/profile_spec.rb -------------------------------------------------------------------------------- /spec/features/projects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/projects_spec.rb -------------------------------------------------------------------------------- /spec/features/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/provider_spec.rb -------------------------------------------------------------------------------- /spec/features/recommended_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/recommended_spec.rb -------------------------------------------------------------------------------- /spec/features/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/report_spec.rb -------------------------------------------------------------------------------- /spec/features/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/search_spec.rb -------------------------------------------------------------------------------- /spec/features/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/service_spec.rb -------------------------------------------------------------------------------- /spec/features/user_action_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/features/user_action_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/files/MetalPDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/fixtures/files/MetalPDB.png -------------------------------------------------------------------------------- /spec/helpers/date_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/helpers/date_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/nav_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/helpers/nav_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/images/invalid-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/images/invalid-logo.svg -------------------------------------------------------------------------------- /spec/lib/import/providers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/import/providers_spec.rb -------------------------------------------------------------------------------- /spec/lib/import/resources_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/import/resources_spec.rb -------------------------------------------------------------------------------- /spec/lib/jira/setup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/jira/setup_spec.rb -------------------------------------------------------------------------------- /spec/lib/jms/subscriber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/jms/subscriber_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/tasks/import_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/jira_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/lib/tasks/jira_spec.rb -------------------------------------------------------------------------------- /spec/mailers/project_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/mailers/project_item_spec.rb -------------------------------------------------------------------------------- /spec/mailers/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/mailers/service_spec.rb -------------------------------------------------------------------------------- /spec/models/access_mode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/access_mode_spec.rb -------------------------------------------------------------------------------- /spec/models/access_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/access_type_spec.rb -------------------------------------------------------------------------------- /spec/models/attribute/date_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/attribute/date_spec.rb -------------------------------------------------------------------------------- /spec/models/attribute_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/attribute_spec.rb -------------------------------------------------------------------------------- /spec/models/bundle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/bundle_spec.rb -------------------------------------------------------------------------------- /spec/models/category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/category_spec.rb -------------------------------------------------------------------------------- /spec/models/event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/event_spec.rb -------------------------------------------------------------------------------- /spec/models/filter/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/filter/tag_spec.rb -------------------------------------------------------------------------------- /spec/models/filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/filter_spec.rb -------------------------------------------------------------------------------- /spec/models/funding_body_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/funding_body_spec.rb -------------------------------------------------------------------------------- /spec/models/help_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/help_item_spec.rb -------------------------------------------------------------------------------- /spec/models/help_section_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/help_section_spec.rb -------------------------------------------------------------------------------- /spec/models/jira/checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/jira/checker_spec.rb -------------------------------------------------------------------------------- /spec/models/jira/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/jira/client_spec.rb -------------------------------------------------------------------------------- /spec/models/lead_section_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/lead_section_spec.rb -------------------------------------------------------------------------------- /spec/models/lead_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/lead_spec.rb -------------------------------------------------------------------------------- /spec/models/main_contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/main_contact_spec.rb -------------------------------------------------------------------------------- /spec/models/message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/message_spec.rb -------------------------------------------------------------------------------- /spec/models/messageable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/messageable.rb -------------------------------------------------------------------------------- /spec/models/offer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/offer_spec.rb -------------------------------------------------------------------------------- /spec/models/oms/trigger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/oms/trigger_spec.rb -------------------------------------------------------------------------------- /spec/models/oms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/oms_spec.rb -------------------------------------------------------------------------------- /spec/models/parameter/date_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/parameter/date_spec.rb -------------------------------------------------------------------------------- /spec/models/platform_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/platform_spec.rb -------------------------------------------------------------------------------- /spec/models/project_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/project_item_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/provider_spec.rb -------------------------------------------------------------------------------- /spec/models/public_contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/public_contact_spec.rb -------------------------------------------------------------------------------- /spec/models/publishable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/publishable.rb -------------------------------------------------------------------------------- /spec/models/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/report_spec.rb -------------------------------------------------------------------------------- /spec/models/service_source_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/service_source_spec.rb -------------------------------------------------------------------------------- /spec/models/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/service_spec.rb -------------------------------------------------------------------------------- /spec/models/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/status_spec.rb -------------------------------------------------------------------------------- /spec/models/target_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/target_user_spec.rb -------------------------------------------------------------------------------- /spec/models/tour_feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/tour_feedback_spec.rb -------------------------------------------------------------------------------- /spec/models/usage_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/usage_report_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/policies/offer_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/policies/offer_policy_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/services/offer/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/services/offer/update_spec.rb -------------------------------------------------------------------------------- /spec/services/trigger/call_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/services/trigger/call_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/cookies_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/cookies_policy.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/devise.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/message_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/message_delivery.rb -------------------------------------------------------------------------------- /spec/support/should_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/should_matchers.rb -------------------------------------------------------------------------------- /spec/support/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/support/tasks.rb -------------------------------------------------------------------------------- /spec/swagger_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/spec/swagger_helper.rb -------------------------------------------------------------------------------- /swagger/v1/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/error.json -------------------------------------------------------------------------------- /swagger/v1/ess/contact_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/ess/contact_read.json -------------------------------------------------------------------------------- /swagger/v1/ess/link_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/ess/link_read.json -------------------------------------------------------------------------------- /swagger/v1/ess_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/ess_swagger.json -------------------------------------------------------------------------------- /swagger/v1/event/event_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/event/event_index.json -------------------------------------------------------------------------------- /swagger/v1/event/event_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/event/event_read.json -------------------------------------------------------------------------------- /swagger/v1/offer/offer_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/offer/offer_index.json -------------------------------------------------------------------------------- /swagger/v1/offer/offer_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/offer/offer_read.json -------------------------------------------------------------------------------- /swagger/v1/offer/offer_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/offer/offer_update.json -------------------------------------------------------------------------------- /swagger/v1/offer/offer_write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/offer/offer_write.json -------------------------------------------------------------------------------- /swagger/v1/offering_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/offering_swagger.json -------------------------------------------------------------------------------- /swagger/v1/ordering_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/ordering_swagger.json -------------------------------------------------------------------------------- /swagger/v1/search_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/search_swagger.json -------------------------------------------------------------------------------- /swagger/v1/user/user_read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/user/user_read.json -------------------------------------------------------------------------------- /swagger/v1/users_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/swagger/v1/users_swagger.json -------------------------------------------------------------------------------- /test/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/README.md -------------------------------------------------------------------------------- /test/system/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/cypress.config.ts -------------------------------------------------------------------------------- /test/system/cypress/support/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/cypress/support/all.ts -------------------------------------------------------------------------------- /test/system/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/cypress/support/e2e.ts -------------------------------------------------------------------------------- /test/system/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/package-lock.json -------------------------------------------------------------------------------- /test/system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/package.json -------------------------------------------------------------------------------- /test/system/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/tsconfig.json -------------------------------------------------------------------------------- /test/system/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/test/system/yarn.lock -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 4.1.3 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyfronet-fid/marketplace/HEAD/yarn.lock --------------------------------------------------------------------------------