├── .babelrc ├── .dockerignore ├── .editorconfig ├── .env ├── .erdconfig ├── .eslintignore ├── .eslintrc ├── .github ├── issue_template.md ├── pull_request_template.md └── stale.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── Vagrantfile ├── app ├── assets │ ├── images │ │ ├── layout │ │ │ ├── ._portus-logo-dashboard.png │ │ │ ├── bg.png │ │ │ ├── company-panel-bg.jpg │ │ │ ├── portus-error.png │ │ │ ├── portus-logo-dashboard.png │ │ │ └── portus-logo-login-page.png │ │ └── user.svg │ ├── javascripts │ │ ├── base │ │ │ └── component.js │ │ ├── bootstrap.js │ │ ├── config.js │ │ ├── globals.js │ │ ├── main.js │ │ ├── modules │ │ │ ├── admin │ │ │ │ └── registries │ │ │ │ │ ├── components │ │ │ │ │ └── form.vue │ │ │ │ │ ├── index.js │ │ │ │ │ ├── pages │ │ │ │ │ ├── edit.vue │ │ │ │ │ └── new.vue │ │ │ │ │ └── service.js │ │ │ ├── dashboard │ │ │ │ ├── components │ │ │ │ │ ├── search.js │ │ │ │ │ └── tabbed_widget.js │ │ │ │ ├── index.js │ │ │ │ └── pages │ │ │ │ │ └── dashboard.js │ │ │ ├── explore │ │ │ │ ├── components │ │ │ │ │ ├── result-item.vue │ │ │ │ │ └── result.vue │ │ │ │ ├── index.js │ │ │ │ └── pages │ │ │ │ │ └── index.js │ │ │ ├── namespaces │ │ │ │ ├── components │ │ │ │ │ ├── delete-btn.vue │ │ │ │ │ ├── details.vue │ │ │ │ │ ├── edit-form.vue │ │ │ │ │ ├── info.vue │ │ │ │ │ ├── new-form.vue │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── table-row.vue │ │ │ │ │ ├── table.vue │ │ │ │ │ ├── transfer-modal.vue │ │ │ │ │ ├── visibility-chooser.vue │ │ │ │ │ └── visibility.vue │ │ │ │ ├── index.js │ │ │ │ ├── mixins │ │ │ │ │ ├── form.js │ │ │ │ │ └── visibility.js │ │ │ │ ├── pages │ │ │ │ │ ├── index.vue │ │ │ │ │ └── show.vue │ │ │ │ ├── services │ │ │ │ │ └── namespaces.js │ │ │ │ └── store.js │ │ │ ├── repositories │ │ │ │ ├── components │ │ │ │ │ ├── comments │ │ │ │ │ │ ├── form.vue │ │ │ │ │ │ ├── list-item.vue │ │ │ │ │ │ ├── list.vue │ │ │ │ │ │ └── wrapper.vue │ │ │ │ │ ├── overview.vue │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── remote-panel.vue │ │ │ │ │ ├── remote-table.vue │ │ │ │ │ ├── star.vue │ │ │ │ │ ├── table-row.vue │ │ │ │ │ ├── table.vue │ │ │ │ │ └── tags │ │ │ │ │ │ ├── delete-tag-action.vue │ │ │ │ │ │ ├── tag.vue │ │ │ │ │ │ ├── tags-not-loaded.vue │ │ │ │ │ │ ├── tags-table-row.vue │ │ │ │ │ │ ├── tags-table.vue │ │ │ │ │ │ └── wrapper.vue │ │ │ │ ├── index.js │ │ │ │ ├── pages │ │ │ │ │ ├── index.vue │ │ │ │ │ └── show.vue │ │ │ │ ├── services │ │ │ │ │ ├── comments.js │ │ │ │ │ ├── repositories.js │ │ │ │ │ ├── tags.js │ │ │ │ │ └── vulnerabilities-parser.js │ │ │ │ └── store.js │ │ │ ├── tags │ │ │ │ ├── index.js │ │ │ │ └── pages │ │ │ │ │ └── show.vue │ │ │ ├── teams │ │ │ │ ├── components │ │ │ │ │ ├── delete-modal.vue │ │ │ │ │ ├── details.vue │ │ │ │ │ ├── edit-form.vue │ │ │ │ │ ├── info.vue │ │ │ │ │ ├── members │ │ │ │ │ │ ├── form.vue │ │ │ │ │ │ ├── panel.vue │ │ │ │ │ │ ├── table-row.vue │ │ │ │ │ │ └── table.vue │ │ │ │ │ ├── new-form.vue │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── table-row.vue │ │ │ │ │ └── table.vue │ │ │ │ ├── index.js │ │ │ │ ├── pages │ │ │ │ │ ├── index.vue │ │ │ │ │ └── show.vue │ │ │ │ ├── service.js │ │ │ │ └── store.js │ │ │ ├── users │ │ │ │ ├── components │ │ │ │ │ ├── application-tokens │ │ │ │ │ │ ├── form.vue │ │ │ │ │ │ ├── panel.vue │ │ │ │ │ │ ├── table-row.vue │ │ │ │ │ │ ├── table.vue │ │ │ │ │ │ └── wrapper.vue │ │ │ │ │ ├── deletion-modal.vue │ │ │ │ │ ├── deletion-panel.vue │ │ │ │ │ ├── disable-account-panel.vue │ │ │ │ │ ├── edit-panel.vue │ │ │ │ │ ├── new-form.vue │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── password-form.js │ │ │ │ │ ├── profile-form.js │ │ │ │ │ ├── table-row.vue │ │ │ │ │ └── table.vue │ │ │ │ ├── index.js │ │ │ │ ├── pages │ │ │ │ │ ├── edit.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── legacy │ │ │ │ │ │ └── edit.js │ │ │ │ │ ├── sign-in.js │ │ │ │ │ └── sign-up.js │ │ │ │ ├── service.js │ │ │ │ ├── store.js │ │ │ │ └── unauthenticated.js │ │ │ ├── vulnerabilities │ │ │ │ └── components │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── preview.vue │ │ │ │ │ ├── summary.vue │ │ │ │ │ ├── table-row.vue │ │ │ │ │ └── table.vue │ │ │ └── webhooks │ │ │ │ ├── components │ │ │ │ ├── deliveries │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── table-row.vue │ │ │ │ │ └── table.vue │ │ │ │ ├── details.vue │ │ │ │ ├── edit-form.vue │ │ │ │ ├── headers │ │ │ │ │ ├── form.vue │ │ │ │ │ ├── panel.vue │ │ │ │ │ ├── table-row.vue │ │ │ │ │ └── table.vue │ │ │ │ ├── info.vue │ │ │ │ ├── new-form.vue │ │ │ │ ├── panel.vue │ │ │ │ ├── table-row.vue │ │ │ │ └── table.vue │ │ │ │ ├── index.js │ │ │ │ ├── pages │ │ │ │ ├── index.vue │ │ │ │ └── show.vue │ │ │ │ ├── services │ │ │ │ ├── deliveries.js │ │ │ │ ├── headers.js │ │ │ │ └── webhooks.js │ │ │ │ └── store.js │ │ ├── plugins │ │ │ ├── alert.js │ │ │ ├── config.js │ │ │ ├── eventbus.js │ │ │ ├── index.js │ │ │ └── unauthenticated.js │ │ ├── polyfill.js │ │ ├── shared │ │ │ ├── components │ │ │ │ ├── checkbox.vue │ │ │ │ ├── loading-icon.vue │ │ │ │ ├── modal.vue │ │ │ │ ├── panel.vue │ │ │ │ ├── sign-out-btn.vue │ │ │ │ ├── star.vue │ │ │ │ ├── table-pagination.vue │ │ │ │ └── toggle-link.vue │ │ │ └── mixins │ │ │ │ ├── form.js │ │ │ │ ├── table-paginated.js │ │ │ │ └── table-sortable.js │ │ ├── unauthenticated.js │ │ └── utils │ │ │ ├── alert.js │ │ │ ├── comparator.js │ │ │ ├── csrf.js │ │ │ ├── date.js │ │ │ ├── effects.js │ │ │ ├── http.js │ │ │ └── range.js │ └── stylesheets │ │ ├── application.scss │ │ ├── components │ │ ├── activities.scss │ │ ├── buttons.scss │ │ ├── errors.scss │ │ ├── images.scss │ │ ├── layout.scss │ │ ├── namespaces │ │ │ └── info.scss │ │ ├── pagination.scss │ │ ├── repositories │ │ │ └── overview.scss │ │ ├── responsive-utilities.scss │ │ ├── tables.scss │ │ ├── vue-multiselect.scss │ │ ├── vulnerabilities │ │ │ ├── severities.scss │ │ │ ├── summary.scss │ │ │ └── table.scss │ │ └── webhooks │ │ │ └── edit-form.scss │ │ ├── core │ │ ├── mixins.scss │ │ └── variables.scss │ │ ├── includes │ │ ├── alignment.scss │ │ ├── forms.scss │ │ ├── labels.scss │ │ ├── modals.scss │ │ ├── panels.scss │ │ └── types.scss │ │ └── pages │ │ ├── comments.scss │ │ ├── dashboard.scss │ │ ├── explore.scss │ │ ├── registries.scss │ │ ├── repositories.scss │ │ └── search.scss ├── controllers │ ├── admin │ │ ├── activities_controller.rb │ │ ├── base_controller.rb │ │ ├── registries_controller.rb │ │ └── users_controller.rb │ ├── api │ │ ├── base_controller.rb │ │ └── v2 │ │ │ ├── events_controller.rb │ │ │ ├── ping_controller.rb │ │ │ └── tokens_controller.rb │ ├── application_controller.rb │ ├── auth │ │ ├── omniauth_callbacks_controller.rb │ │ ├── omniauth_registrations_controller.rb │ │ ├── registrations_controller.rb │ │ └── sessions_controller.rb │ ├── comments_controller.rb │ ├── concerns │ │ ├── check_ldap.rb │ │ ├── headers.rb │ │ ├── session_flash.rb │ │ ├── with_ordering.rb │ │ └── with_pagination.rb │ ├── dashboard_controller.rb │ ├── errors_controller.rb │ ├── explore_controller.rb │ ├── help_controller.rb │ ├── namespaces_controller.rb │ ├── passwords_controller.rb │ ├── repositories_controller.rb │ ├── search_controller.rb │ ├── tags_controller.rb │ ├── teams_controller.rb │ ├── webhook_deliveries_controller.rb │ ├── webhook_headers_controller.rb │ └── webhooks_controller.rb ├── helpers │ ├── activities_helper.rb │ ├── application_helper.rb │ ├── namespaces_helper.rb │ ├── registries_helper.rb │ ├── repositories_helper.rb │ ├── search_helper.rb │ ├── sessions_helper.rb │ ├── teams_helper.rb │ └── webhooks_helper.rb ├── mailers │ └── devise_mailer.rb ├── models │ ├── activity │ │ └── fallback.rb │ ├── application_record.rb │ ├── application_token.rb │ ├── comment.rb │ ├── namespace.rb │ ├── namespace │ │ └── auth_scope.rb │ ├── registry.rb │ ├── registry │ │ └── auth_scope.rb │ ├── registry_event.rb │ ├── repository.rb │ ├── scan_result.rb │ ├── star.rb │ ├── tag.rb │ ├── team.rb │ ├── team_user.rb │ ├── user.rb │ ├── vulnerability.rb │ ├── webhook.rb │ ├── webhook_delivery.rb │ └── webhook_header.rb ├── policies │ ├── application_token_policy.rb │ ├── comment_policy.rb │ ├── namespace_policy.rb │ ├── public_activity │ │ └── activity_policy.rb │ ├── registry_policy.rb │ ├── repository_policy.rb │ ├── tag_policy.rb │ ├── team_policy.rb │ ├── team_user_policy.rb │ ├── webhook_delivery_policy.rb │ ├── webhook_header_policy.rb │ └── webhook_policy.rb ├── services │ ├── README.md │ ├── base_service.rb │ ├── base_validate_service.rb │ ├── helpers │ │ └── change_name_description.rb │ ├── namespaces │ │ ├── build_service.rb │ │ ├── create_service.rb │ │ ├── destroy_service.rb │ │ └── update_service.rb │ ├── registries │ │ ├── base_service.rb │ │ ├── create_service.rb │ │ ├── update_service.rb │ │ └── validate_service.rb │ ├── repositories │ │ ├── destroy_service.rb │ │ └── update_service.rb │ ├── tags │ │ └── destroy_service.rb │ ├── team_users │ │ ├── base_service.rb │ │ ├── build_service.rb │ │ ├── create_service.rb │ │ ├── destroy_service.rb │ │ └── update_service.rb │ └── teams │ │ ├── create_service.rb │ │ ├── destroy_service.rb │ │ ├── migration_service.rb │ │ └── update_service.rb ├── validators │ ├── http_validator.rb │ ├── namespace_validator.rb │ └── unique_tag_validator.rb └── views │ ├── admin │ ├── activities │ │ ├── index.csv.slim │ │ └── index.html.slim │ ├── dashboard │ │ └── index.html.slim │ ├── registries │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ └── new.html.slim │ └── users │ │ ├── edit.html.slim │ │ ├── index.html.slim │ │ └── new.html.slim │ ├── auth │ └── omniauth_registrations │ │ └── new.html.slim │ ├── dashboard │ ├── _repository.html.slim │ ├── _star.html.slim │ ├── index.html.slim │ └── partials │ │ ├── _portus_user_alert.html.slim │ │ ├── _recent_activities.html.slim │ │ ├── _repositories.html.slim │ │ └── _stats.html.slim │ ├── devise │ ├── passwords │ │ ├── edit.html.slim │ │ └── new.html.slim │ ├── registrations │ │ ├── edit.html.slim │ │ └── new.html.slim │ └── sessions │ │ ├── _social_login.html.slim │ │ └── new.html.slim │ ├── errors │ ├── 401.html.slim │ ├── 404.html.slim │ ├── 422.html.slim │ ├── 500.csv.slim │ ├── 500.html.erb │ ├── _status_title.html.slim │ └── show.html.erb │ ├── explore │ ├── index.slim │ └── partials │ │ ├── _form.html.slim │ │ └── _top.html.slim │ ├── help │ └── index.slim │ ├── kaminari │ ├── _first_page.html.slim │ ├── _gap.html.slim │ ├── _last_page.html.slim │ ├── _next_page.html.slim │ ├── _page.html.slim │ ├── _paginator.html.slim │ └── _prev_page.html.slim │ ├── layouts │ ├── application.html.slim │ ├── authentication.html.slim │ └── errors.html.slim │ ├── namespaces │ ├── index.html.erb │ └── show.html.slim │ ├── public_activity │ ├── application_token │ │ ├── _create.csv.slim │ │ ├── _create.html.slim │ │ ├── _destroy.csv.slim │ │ └── _destroy.html.slim │ ├── namespace │ │ ├── _change_namespace_description.csv.slim │ │ ├── _change_namespace_description.html.slim │ │ ├── _change_team.csv.slim │ │ ├── _change_team.html.slim │ │ ├── _change_visibility.csv.slim │ │ ├── _change_visibility.html.slim │ │ ├── _create.csv.slim │ │ ├── _create.html.slim │ │ ├── _delete.csv.slim │ │ ├── _delete.html.slim │ │ ├── _private.csv.slim │ │ ├── _private.html.slim │ │ ├── _public.csv.slim │ │ └── _public.html.slim │ ├── registry │ │ ├── _delete.csv.slim │ │ ├── _delete.html.slim │ │ ├── _remove_team.csv.slim │ │ └── _remove_team.html.slim │ ├── repository │ │ ├── _delete.csv.slim │ │ ├── _delete.html.slim │ │ ├── _push.csv.slim │ │ └── _push.html.slim │ ├── team │ │ ├── _add_member.csv.slim │ │ ├── _add_member.html.slim │ │ ├── _change_member_role.csv.slim │ │ ├── _change_member_role.html.slim │ │ ├── _change_team_description.csv.slim │ │ ├── _change_team_description.html.slim │ │ ├── _change_team_name.csv.slim │ │ ├── _change_team_name.html.slim │ │ ├── _create.csv.slim │ │ ├── _create.html.slim │ │ ├── _migration.html.slim │ │ ├── _remove_member.csv.slim │ │ └── _remove_member.html.slim │ ├── user │ │ ├── _delete.csv.slim │ │ └── _delete.html.slim │ └── webhook │ │ ├── _create.csv.slim │ │ ├── _create.html.slim │ │ ├── _destroy.csv.slim │ │ ├── _destroy.html.slim │ │ ├── _disabled.csv.slim │ │ ├── _disabled.html.slim │ │ ├── _enabled.csv.slim │ │ ├── _enabled.html.slim │ │ ├── _update.csv.slim │ │ └── _update.html.slim │ ├── repositories │ ├── index.html.slim │ └── show.html.slim │ ├── search │ ├── _desktop_categories.html.slim │ ├── _mobile_categories.html.slim │ ├── _namespaces.html.slim │ ├── _repositories.html.slim │ ├── _teams.html.slim │ └── index.html.slim │ ├── shared │ ├── _aside.html.slim │ ├── _config.html.slim │ ├── _header.html.slim │ ├── _notification.html.slim │ ├── _notifications.html.slim │ └── _search.html.slim │ ├── tags │ └── show.html.slim │ ├── teams │ ├── index.html.slim │ └── show.html.slim │ └── webhooks │ ├── index.html.slim │ └── show.html.slim ├── bin ├── background.rb ├── bundle ├── check_db.rb ├── ci │ ├── after_script.sh │ ├── before_script.sh │ ├── install.sh │ └── run.sh ├── client.rb ├── generate_test_data.rb ├── health.rb ├── integration │ └── integration.rb ├── rails ├── rake ├── schema_check.rb ├── security.rb ├── setup ├── spring └── test-integration.sh ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── brakeman.yml ├── config.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── 01_database.rb │ ├── activity.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── checks.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── devise │ │ └── oauth.rb │ ├── draw_def.rb │ ├── environment_check.rb │ ├── filter_parameter_logging.rb │ ├── gravatar_image_tag.rb │ ├── inflections.rb │ ├── ldap_authenticatable.rb │ ├── mail.rb │ ├── mailer_url_options.rb │ ├── mime_types.rb │ ├── portus_user.rb │ ├── rails.rb │ ├── registry.rb │ ├── ruby.rb │ ├── session_store.rb │ ├── swagger.rb │ ├── version.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.bootstrap.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── routes │ ├── admin.rb │ ├── namespaces.rb │ ├── registry_api.rb │ ├── repositories.rb │ ├── root.rb │ ├── teams.rb │ └── users.rb ├── secrets.yml └── webpack.js ├── db ├── migrate │ ├── 20150414104850_devise_create_users.rb │ ├── 20150416121417_create_namespaces.rb │ ├── 20150416121842_create_repositories.rb │ ├── 20150416122030_create_tags.rb │ ├── 20150417095841_create_teams.rb │ ├── 20150417100647_add_team_reference_to_namespace.rb │ ├── 20150426115313_create_team_users.rb │ ├── 20150427092952_add_admin_to_users.rb │ ├── 20150428081205_add_owner_to_team_users.rb │ ├── 20150428081530_remove_owner_id_from_teams.rb │ ├── 20150429102443_add_role_to_team_user.rb │ ├── 20150429185051_add_public_to_namespace.rb │ ├── 20150507155138_create_registries.rb │ ├── 20150507155425_add_registry_id_to_namespaces.rb │ ├── 20150512105052_create_activities.rb │ ├── 20150513133049_add_index_to_activities_key.rb │ ├── 20150515111638_add_author_to_tag.rb │ ├── 20150515114145_add_global_flag_to_namespaces.rb │ ├── 20150518142223_add_hidden_to_teams.rb │ ├── 20150521145620_add_fulltext_indexes_on_repositories_namespaces.rb │ ├── 20150522140822_add_index_name_on_teams.rb │ ├── 20150522141052_fix_index_name_on_repositories.rb │ ├── 20150522141547_fix_index_name_on_namespaces.rb │ ├── 20150522144027_add_index_on_tag_name_repository_id.rb │ ├── 20150629080516_change_registry_id_from_namespace.rb │ ├── 20150722194840_create_stars.rb │ ├── 20150729153854_add_enabled_to_users.rb │ ├── 20150805130722_create_crono_jobs.rb │ ├── 20150831131727_add_ldap_name_to_users.rb │ ├── 20150915130327_add_lockable_to_users.rb │ ├── 20150923091830_add_use_ssl_to_registries.rb │ ├── 20150924084635_add_attribute_to_teams.rb │ ├── 20150928112551_add_description_to_namespace.rb │ ├── 20151029145958_remove_not_null_constraint_on_users_email.rb │ ├── 20151112003047_add_digest_to_tags.rb │ ├── 20151113162311_create_comments.rb │ ├── 20151113162513_add_author_to_comment.rb │ ├── 20151117181723_create_application_tokens.rb │ ├── 20151124150353_removetitle.rb │ ├── 20151215152138_remove_log_from_crono_job.rb │ ├── 20160411150441_create_webhooks.rb │ ├── 20160411150458_create_webhook_headers.rb │ ├── 20160411150745_create_webhook_deliveries.rb │ ├── 20160422075603_add_image_id_to_tag.rb │ ├── 20160502140301_add_marked_to_repositories_and_tags.rb │ ├── 20160510153011_add_namespace_id_to_users.rb │ ├── 20160519110301_add_external_hostname_to_registries.rb │ ├── 20160526105216_remove_index_on_ldap_users.rb │ ├── 20160531151718_add_display_name_to_users.rb │ ├── 20160614114318_add_visibility_to_namespace.rb │ ├── 20160614121943_move_public_to_visibility_on_namespace.rb │ ├── 20160614122012_remove_public_from_namespace.rb │ ├── 20160825105515_add_username_to_tags.rb │ ├── 20160927141850_create_registry_events.rb │ ├── 20170630194953_add_omniauth_to_users.rb │ ├── 20171011150408_remove_fulltext_index_repositories_on_name_index.rb │ ├── 20171014192702_add_indexes_to_activities.rb │ ├── 20171031112721_remove_index_on_tag_name_repository_id.rb │ ├── 20171130095821_add_scanned_and_vulns_to_tag.rb │ ├── 20171213093923_add_status_and_data_to_registry_event.rb │ ├── 20171213094038_remove_repository_and_tag_from_registry_event.rb │ ├── 20171220095321_drop_crono_jobs_table.rb │ ├── 20180109114124_add_name_to_webhooks.rb │ ├── 20180207145522_change_vulnerabilities_to_medium_text.rb │ ├── 20180409142550_create_vulnerabilities.rb │ ├── 20180409143945_create_scan_results.rb │ ├── 20180411102022_remove_vulnerabilities_from_tag.rb │ ├── 20180412140442_add_description_to_vulnerabilities.rb │ ├── 20180612145708_add_bot_to_user.rb │ ├── 20181213101302_add_index_scan_results_vulnerability_tag.rb │ ├── 20181224123453_add_ldap_group_checked_to_teams.rb │ ├── 20190102143451_add_description_to_repositories.rb │ ├── 20190103113934_add_checked_at_to_team.rb │ ├── 20190103124548_add_ldap_group_checked_to_user.rb │ ├── 20190109112643_add_size_to_tags.rb │ ├── 20190115133935_add_pulled_at_to_tags.rb │ └── 20190314173309_change_tag_size.rb ├── schema.mysql.rb ├── schema.postgresql.rb └── seeds.rb ├── doc ├── README.md └── database.png ├── docker-compose.yml ├── docker ├── Dockerfile ├── README.md └── init ├── examples ├── README.md ├── compose │ ├── .env │ ├── README.md │ ├── clair │ │ └── clair.yml │ ├── docker-compose.clair-ssl.yml │ ├── docker-compose.clair.yml │ ├── docker-compose.insecure.yml │ ├── docker-compose.ldap.yml │ ├── docker-compose.yml │ ├── nginx │ │ └── nginx.conf │ ├── registry │ │ ├── config.yml │ │ └── init │ └── secrets │ │ └── .gitignore ├── development │ ├── compose │ │ ├── bootstrap-webpack │ │ ├── config.yml │ │ ├── init.rb │ │ └── portus.crt │ ├── postgresql │ │ ├── README.md │ │ └── docker-compose.yml │ └── vagrant │ │ ├── conf │ │ ├── ca_bundle │ │ │ ├── README.md │ │ │ ├── ca.crt │ │ │ ├── ca.key │ │ │ ├── server.crt │ │ │ ├── server.csr │ │ │ ├── server.key │ │ │ ├── server.key.secure │ │ │ └── server.pub │ │ ├── portus │ │ │ ├── httpd.conf.local │ │ │ ├── portus.test.lan.conf │ │ │ └── sysconfig_apache2 │ │ └── registry-config.yml │ │ ├── portus_required_packages.yml │ │ ├── provision_client │ │ ├── provision_portus_by_rpms │ │ ├── provision_registry │ │ └── setup_private_network └── kubernetes │ └── README.md ├── lib ├── api │ ├── entities.rb │ ├── helpers.rb │ ├── helpers │ │ ├── application_tokens.rb │ │ ├── comments.rb │ │ ├── errors.rb │ │ ├── namespaces.rb │ │ ├── ordering.rb │ │ ├── pagination.rb │ │ ├── repositories.rb │ │ ├── teams.rb │ │ └── webhooks.rb │ ├── root_api.rb │ ├── v1 │ │ ├── application_tokens.rb │ │ ├── health.rb │ │ ├── namespaces.rb │ │ ├── ordering_params.rb │ │ ├── pagination_params.rb │ │ ├── registries.rb │ │ ├── repositories.rb │ │ ├── tags.rb │ │ ├── teams.rb │ │ ├── users.rb │ │ └── vulnerabilities.rb │ └── version.rb ├── omni_auth │ └── strategies │ │ └── bitbucket.rb ├── portus │ ├── auth_from_token.rb │ ├── auth_scope.rb │ ├── background │ │ ├── README.md │ │ ├── garbage_collector.rb │ │ ├── ldap.rb │ │ ├── registry.rb │ │ ├── security_scanning.rb │ │ └── sync.rb │ ├── checks.rb │ ├── cmd.rb │ ├── db.rb │ ├── deprecation_error.rb │ ├── errors.rb │ ├── health.rb │ ├── health_checks │ │ ├── clair.rb │ │ ├── db.rb │ │ ├── ldap.rb │ │ └── registry.rb │ ├── http_helpers.rb │ ├── jwt_token.rb │ ├── ldap │ │ ├── adapter.rb │ │ ├── authenticatable.rb │ │ ├── configuration.rb │ │ ├── connection.rb │ │ ├── errors.rb │ │ ├── login.rb │ │ └── search.rb │ ├── mail.rb │ ├── migrate.rb │ ├── registry_client.rb │ ├── registry_notification.rb │ ├── request_error.rb │ ├── security.rb │ ├── security_backends │ │ ├── base.rb │ │ ├── clair.rb │ │ ├── dummy.rb │ │ ├── fixtures │ │ │ ├── dummy.json │ │ │ └── empty.json │ │ └── zypper.rb │ └── test.rb └── tasks │ ├── annotate.rake │ ├── assets.rake │ ├── brakeman.rake │ ├── helpers.rb │ ├── info.rake │ ├── portus │ ├── admin.rake │ ├── api.rake │ ├── db.rake │ ├── registry.rake │ ├── tags.rake │ └── user.rake │ ├── release │ ├── bump.rake │ └── prepare.rake │ ├── test │ ├── git_validate.rake │ └── integration.rake │ └── yarn.rake ├── package.json ├── packaging └── suse │ ├── .gitignore │ ├── README.md │ ├── conf │ └── registry.config.yml.in │ ├── make_spec.sh │ ├── package_and_push_to_obs.sh │ ├── patches │ └── README │ ├── portus.spec.in │ ├── release │ ├── .gitignore │ ├── README │ ├── project.xml.template │ ├── projectconfig.txt │ └── release.sh │ └── rubygem_check.rb ├── public ├── favicon.ico ├── favicon │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── safari-pinned-tab.svg ├── landing.html.in └── robots.txt ├── spec ├── api │ ├── grape_api │ │ └── v1 │ │ │ ├── application_tokens_spec.rb │ │ │ ├── health_spec.rb │ │ │ ├── namespaces_spec.rb │ │ │ ├── registries_spec.rb │ │ │ ├── repositories_spec.rb │ │ │ ├── root_spec.rb │ │ │ ├── tags_spec.rb │ │ │ ├── teams_spec.rb │ │ │ ├── users_spec.rb │ │ │ ├── version_spec.rb │ │ │ └── vulnerabilities_spec.rb │ ├── helpers │ │ └── namespaces_spec.rb │ └── v2 │ │ ├── events_spec.rb │ │ ├── ping_spec.rb │ │ └── token_spec.rb ├── factories │ ├── activities.rb │ ├── application_token.rb │ ├── comments.rb │ ├── namespaces.rb │ ├── registries.rb │ ├── registry_raw_event.rb │ ├── repositories.rb │ ├── scan_result.rb │ ├── star.rb │ ├── tag.rb │ ├── teams_factory.rb │ ├── users_factory.rb │ ├── vulnerability.rb │ ├── webhook_deliveries.rb │ ├── webhook_headers.rb │ └── webhooks.rb ├── helpers │ ├── activities_helper_spec.rb │ ├── application_helper_spec.rb │ ├── namespaces_helper_spec.rb │ ├── registries_helper_spec.rb │ ├── repositories_helper_spec.rb │ ├── search_helper_spec.rb │ ├── sessions_helper_spec.rb │ └── teams_helper_spec.rb ├── integration │ ├── README.md │ ├── events.bats │ ├── health.bats │ ├── helpers.bash │ ├── helpers │ │ ├── curl.rb │ │ ├── delete.rb │ │ ├── eval.rb │ │ ├── ldap.rb │ │ ├── wait_event_done.rb │ │ ├── wait_ldap_check.rb │ │ └── waiter.rb │ ├── ldap │ │ ├── health.bats │ │ ├── login.bats │ │ ├── team.bats │ │ └── user.bats │ ├── login.bats │ ├── profiles │ │ ├── full.rb │ │ ├── ldap.rb │ │ ├── minimal.rb │ │ └── shared.rb │ └── push.bats ├── javascripts │ ├── .eslintrc │ ├── modules │ │ ├── repositories │ │ │ ├── delete-tag-action.spec.js │ │ │ ├── tag.spec.js │ │ │ ├── tags-table-row.spec.js │ │ │ ├── tags-table.spec.js │ │ │ ├── vulnerabilities-parser.spec.js │ │ │ └── vulnerabilities-preview.spec.js │ │ └── teams │ │ │ └── form.spec.js │ ├── setup.js │ ├── shared │ │ ├── loading-icon.spec.js │ │ ├── table-pagination.spec.js │ │ └── toggle-link.spec.js │ └── utils │ │ ├── comparator.spec.js │ │ ├── date.spec.js │ │ └── range.spec.js ├── lib │ ├── omni_auth │ │ └── strategies │ │ │ └── bitbucket_spec.rb │ └── portus │ │ ├── background │ │ ├── garbage_collector_spec.rb │ │ ├── ldap_spec.rb │ │ ├── registry_spec.rb │ │ ├── security_scanning_spec.rb │ │ └── sync_spec.rb │ │ ├── db_spec.rb │ │ ├── deprecation_error_spec.rb │ │ ├── jwt_token_spec.rb │ │ ├── ldap │ │ ├── authenticatable_spec.rb │ │ ├── configuration_spec.rb │ │ └── search_spec.rb │ │ ├── mail_spec.rb │ │ ├── migrate_spec.rb │ │ ├── registry_client_spec.rb │ │ ├── registry_notification_spec.rb │ │ ├── request_error_spec.rb │ │ ├── security │ │ └── clair_spec.rb │ │ └── security_spec.rb ├── models │ ├── application_token_spec.rb │ ├── comment_spec.rb │ ├── namespace │ │ └── auth_scope_spec.rb │ ├── namespace_spec.rb │ ├── registry │ │ └── auth_scope_spec.rb │ ├── registry_spec.rb │ ├── repository_spec.rb │ ├── star_spec.rb │ ├── tag_spec.rb │ ├── team_spec.rb │ ├── team_user_spec.rb │ ├── user_spec.rb │ ├── webhook_delivery_spec.rb │ ├── webhook_header_spec.rb │ └── webhook_spec.rb ├── policies │ ├── namespace_policy_spec.rb │ ├── public_activity │ │ └── activity_policy_spec.rb │ ├── registry_policy_spec.rb │ ├── repository_policy_spec.rb │ ├── team_policy_spec.rb │ ├── team_user_policy_spec.rb │ └── webhook_policy_spec.rb ├── rails_helper.rb ├── requests │ ├── admin │ │ ├── activities_controller_spec.rb │ │ ├── registries_controller_spec.rb │ │ └── users_controller_spec.rb │ ├── api │ │ └── v2 │ │ │ └── ping_controller_spec.rb │ ├── auth │ │ └── registrations_controller_spec.rb │ ├── comments_controller_spec.rb │ ├── dashboard_controller_spec.rb │ ├── errors_controller_spec.rb │ ├── explore_controller_spec.rb │ ├── help_controller_spec.rb │ ├── namespaces_controller_spec.rb │ ├── passwords_controller_spec.rb │ ├── repositories_controller_spec.rb │ ├── search_controller_spec.rb │ ├── tags_controller_spec.rb │ ├── teams_controller_spec.rb │ ├── webhook_deliveries_controller_spec.rb │ ├── webhook_headers_controller_spec.rb │ └── webhooks_controller_spec.rb ├── routing │ ├── namespaces_routing_spec.rb │ └── repositories_routing_spec.rb ├── services │ ├── namespaces │ │ ├── build_service_spec.rb │ │ ├── create_service_spec.rb │ │ └── destroy_service_spec.rb │ ├── registries │ │ ├── create_service_spec.rb │ │ └── validate_service_spec.rb │ ├── repositories │ │ ├── destroy_service_spec.rb │ │ └── update_service_spec.rb │ ├── tags │ │ └── destroy_service_spec.rb │ ├── team_users │ │ ├── build_service_spec.rb │ │ ├── create_service_spec.rb │ │ ├── destroy_service_spec.rb │ │ └── update_service_spec.rb │ └── teams │ │ ├── create_service_spec.rb │ │ ├── destroy_service_spec.rb │ │ └── migration_service_spec.rb ├── spec_helper.rb ├── support │ ├── connection.rb │ ├── containers.rb │ ├── database_cleaner.rb │ ├── devise.rb │ ├── helpers.rb │ ├── models │ │ └── registry_raw_event.rb │ ├── registry_events.rb │ └── wait_for_events.rb ├── system │ ├── admin │ │ ├── registries_spec.rb │ │ └── users_spec.rb │ ├── application_spec.rb │ ├── application_tokens_spec.rb │ ├── auth │ │ ├── login_feature_spec.rb │ │ ├── logout_feature_spec.rb │ │ ├── omniauth_registrations_spec.rb │ │ ├── profile_feature_spec.rb │ │ └── signup_feature_spec.rb │ ├── dashboard_spec.rb │ ├── errors_spec.rb │ ├── explore_spec.rb │ ├── forgotten_password_spec.rb │ ├── gravatar_spec.rb │ ├── help_spec.rb │ ├── namespaces_spec.rb │ ├── repositories_comments_spec.rb │ ├── repositories_spec.rb │ ├── tags_spec.rb │ ├── teams_spec.rb │ └── webhooks_spec.rb ├── vcr_cassettes │ ├── api_github_orgs.yml │ ├── api_github_teams.yml │ ├── api_gitlab_groups.yml │ ├── background │ │ ├── clair.yml │ │ └── node.yml │ ├── health │ │ ├── clair-bad.yml │ │ ├── clair-ok.yml │ │ └── ok.yml │ ├── registry │ │ ├── catalog_lots_of_repos.yml │ │ ├── catalog_lots_of_tags.yml │ │ ├── delete_blob.yml │ │ ├── delete_disabled.yml │ │ ├── delete_missing_blob.yml │ │ ├── get_image_manifest.yml │ │ ├── get_image_manifest_another_webhook.yml │ │ ├── get_image_manifest_namespaced_webhook.yml │ │ ├── get_image_manifest_namespaced_webhook_v2.yml │ │ ├── get_image_manifest_tags.yml │ │ ├── get_image_manifest_webhook.yml │ │ ├── get_missing_catalog_endpoint.yml │ │ ├── get_missing_image_manifest.yml │ │ ├── get_registry_catalog.yml │ │ ├── get_registry_catalog_namespace_missing.yml │ │ ├── get_registry_one_fails.yml │ │ ├── get_tags_list_webhook.yml │ │ ├── invalid_delete_blob.yml │ │ ├── missing_credentials.yml │ │ ├── successful_authentication.yml │ │ └── wrong_authentication.yml │ └── security │ │ ├── clair-is-not-there.yml │ │ ├── clair-is-unknown.yml │ │ ├── clair-wrong-get.yml │ │ ├── clair-wrong-post.yml │ │ ├── clair.yml │ │ └── clair_features_nil.yml └── views │ ├── explore │ └── index.html.slim_spec.rb │ ├── help │ └── index.html.slim_spec.rb │ ├── public_activity │ ├── registry │ │ ├── _delete.csv.slim_spec.rb │ │ └── _delete.html.slim_spec.rb │ ├── team │ │ ├── _remove_member.csv.slim_spec.rb │ │ └── _remove_member.html.slim_spec.rb │ └── webhook │ │ ├── _create.csv.slim_spec.rb │ │ ├── _create.html.slim_spec.rb │ │ ├── _enabled.csv.slim_spec.rb │ │ └── _enabled.html.slim_spec.rb │ └── search │ └── index.html.slim_spec.rb ├── vendor └── assets │ ├── fonts │ ├── pacifico.woff2 │ ├── raleway-bold.woff2 │ ├── raleway-heavy.woff2 │ ├── raleway-light.woff2 │ └── raleway.woff2 │ ├── javascripts │ └── lifeitup_layout.js │ └── stylesheets │ ├── bootstrap-typeahead.scss │ ├── lifeitup │ ├── alerts.scss │ ├── buttons.scss │ ├── images.scss │ ├── labels.scss │ ├── layout.scss │ ├── lifeitup.scss │ ├── links.scss │ ├── lists.scss │ ├── mixings.scss │ ├── panels.scss │ ├── responsive_tools.scss │ ├── table.scss │ └── variables.scss │ ├── pacifico.css.erb │ ├── raleway.css.erb │ └── vue-multiselect.css └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | MACHINE_FQDN=172.17.0.1 2 | REGISTRY_PORT=5000 -------------------------------------------------------------------------------- /.erdconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.erdconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.5.0-dev 2 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/assets/images/layout/._portus-logo-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/layout/._portus-logo-dashboard.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/layout/bg.png -------------------------------------------------------------------------------- /app/assets/images/layout/company-panel-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/layout/company-panel-bg.jpg -------------------------------------------------------------------------------- /app/assets/images/layout/portus-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/layout/portus-error.png -------------------------------------------------------------------------------- /app/assets/images/layout/portus-logo-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/layout/portus-logo-dashboard.png -------------------------------------------------------------------------------- /app/assets/images/layout/portus-logo-login-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/layout/portus-logo-login-page.png -------------------------------------------------------------------------------- /app/assets/images/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/images/user.svg -------------------------------------------------------------------------------- /app/assets/javascripts/base/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/base/component.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /app/assets/javascripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/config.js -------------------------------------------------------------------------------- /app/assets/javascripts/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/globals.js -------------------------------------------------------------------------------- /app/assets/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/main.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/admin/registries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/admin/registries/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/admin/registries/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/admin/registries/service.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/dashboard/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/explore/index.js: -------------------------------------------------------------------------------- 1 | import './pages/index'; 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/modules/explore/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/explore/pages/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/namespaces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/namespaces/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/namespaces/mixins/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/namespaces/mixins/form.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/namespaces/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/namespaces/pages/index.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/namespaces/pages/show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/namespaces/pages/show.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/namespaces/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/namespaces/store.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/repositories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/repositories/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/repositories/pages/show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/repositories/pages/show.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/repositories/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/repositories/store.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/tags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/tags/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/tags/pages/show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/tags/pages/show.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/components/info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/components/info.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/components/panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/components/panel.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/components/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/components/table.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/pages/index.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/pages/show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/pages/show.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/service.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/teams/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/teams/store.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/components/panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/components/panel.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/components/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/components/table.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/pages/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/pages/edit.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/pages/index.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/pages/legacy/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/pages/legacy/edit.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/pages/sign-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/pages/sign-in.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/pages/sign-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/pages/sign-up.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/service.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/store.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/users/unauthenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/users/unauthenticated.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/webhooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/webhooks/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/webhooks/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/webhooks/pages/index.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/webhooks/pages/show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/webhooks/pages/show.vue -------------------------------------------------------------------------------- /app/assets/javascripts/modules/webhooks/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/modules/webhooks/store.js -------------------------------------------------------------------------------- /app/assets/javascripts/plugins/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/plugins/alert.js -------------------------------------------------------------------------------- /app/assets/javascripts/plugins/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/plugins/config.js -------------------------------------------------------------------------------- /app/assets/javascripts/plugins/eventbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/plugins/eventbus.js -------------------------------------------------------------------------------- /app/assets/javascripts/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/plugins/index.js -------------------------------------------------------------------------------- /app/assets/javascripts/plugins/unauthenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/plugins/unauthenticated.js -------------------------------------------------------------------------------- /app/assets/javascripts/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/polyfill.js -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/components/checkbox.vue -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/loading-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/components/loading-icon.vue -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/components/modal.vue -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/components/panel.vue -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/sign-out-btn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/components/sign-out-btn.vue -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/star.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/shared/components/toggle-link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/components/toggle-link.vue -------------------------------------------------------------------------------- /app/assets/javascripts/shared/mixins/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/mixins/form.js -------------------------------------------------------------------------------- /app/assets/javascripts/shared/mixins/table-paginated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/mixins/table-paginated.js -------------------------------------------------------------------------------- /app/assets/javascripts/shared/mixins/table-sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/shared/mixins/table-sortable.js -------------------------------------------------------------------------------- /app/assets/javascripts/unauthenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/unauthenticated.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/alert.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/comparator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/comparator.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/csrf.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/date.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/effects.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/http.js -------------------------------------------------------------------------------- /app/assets/javascripts/utils/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/javascripts/utils/range.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/activities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/activities.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/buttons.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/errors.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/images.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/namespaces/info.scss: -------------------------------------------------------------------------------- 1 | .visibility-info { 2 | cursor: default; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/pagination.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/tables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/vue-multiselect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/vue-multiselect.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/webhooks/edit-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/components/webhooks/edit-form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/core/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/core/mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/core/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/core/variables.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/includes/alignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/includes/alignment.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/includes/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/includes/forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/includes/labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/includes/labels.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/includes/modals.scss: -------------------------------------------------------------------------------- 1 | .modal-content { 2 | margin: 10vh auto; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/includes/panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/includes/panels.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/includes/types.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/includes/types.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/pages/comments.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/pages/dashboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/explore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/pages/explore.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/registries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/pages/registries.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/repositories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/pages/repositories.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/assets/stylesheets/pages/search.scss -------------------------------------------------------------------------------- /app/controllers/admin/activities_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/admin/activities_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/admin/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/registries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/admin/registries_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/api/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/api/v2/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/ping_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/api/v2/ping_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v2/tokens_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/api/v2/tokens_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/auth/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth/omniauth_registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/auth/omniauth_registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/auth/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/auth/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/check_ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/concerns/check_ldap.rb -------------------------------------------------------------------------------- /app/controllers/concerns/headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/concerns/headers.rb -------------------------------------------------------------------------------- /app/controllers/concerns/session_flash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/concerns/session_flash.rb -------------------------------------------------------------------------------- /app/controllers/concerns/with_ordering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/concerns/with_ordering.rb -------------------------------------------------------------------------------- /app/controllers/concerns/with_pagination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/concerns/with_pagination.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/explore_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/explore_controller.rb -------------------------------------------------------------------------------- /app/controllers/help_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/help_controller.rb -------------------------------------------------------------------------------- /app/controllers/namespaces_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/namespaces_controller.rb -------------------------------------------------------------------------------- /app/controllers/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/repositories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/repositories_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/teams_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/teams_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhook_deliveries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/webhook_deliveries_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhook_headers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/webhook_headers_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/controllers/webhooks_controller.rb -------------------------------------------------------------------------------- /app/helpers/activities_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/activities_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/namespaces_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/namespaces_helper.rb -------------------------------------------------------------------------------- /app/helpers/registries_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/registries_helper.rb -------------------------------------------------------------------------------- /app/helpers/repositories_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/repositories_helper.rb -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/search_helper.rb -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/sessions_helper.rb -------------------------------------------------------------------------------- /app/helpers/teams_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/teams_helper.rb -------------------------------------------------------------------------------- /app/helpers/webhooks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/helpers/webhooks_helper.rb -------------------------------------------------------------------------------- /app/mailers/devise_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/mailers/devise_mailer.rb -------------------------------------------------------------------------------- /app/models/activity/fallback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/activity/fallback.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/application_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/application_token.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/namespace.rb -------------------------------------------------------------------------------- /app/models/namespace/auth_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/namespace/auth_scope.rb -------------------------------------------------------------------------------- /app/models/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/registry.rb -------------------------------------------------------------------------------- /app/models/registry/auth_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/registry/auth_scope.rb -------------------------------------------------------------------------------- /app/models/registry_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/registry_event.rb -------------------------------------------------------------------------------- /app/models/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/repository.rb -------------------------------------------------------------------------------- /app/models/scan_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/scan_result.rb -------------------------------------------------------------------------------- /app/models/star.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/star.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/team.rb -------------------------------------------------------------------------------- /app/models/team_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/team_user.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/vulnerability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/vulnerability.rb -------------------------------------------------------------------------------- /app/models/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/webhook.rb -------------------------------------------------------------------------------- /app/models/webhook_delivery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/webhook_delivery.rb -------------------------------------------------------------------------------- /app/models/webhook_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/models/webhook_header.rb -------------------------------------------------------------------------------- /app/policies/application_token_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/application_token_policy.rb -------------------------------------------------------------------------------- /app/policies/comment_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/comment_policy.rb -------------------------------------------------------------------------------- /app/policies/namespace_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/namespace_policy.rb -------------------------------------------------------------------------------- /app/policies/public_activity/activity_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/public_activity/activity_policy.rb -------------------------------------------------------------------------------- /app/policies/registry_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/registry_policy.rb -------------------------------------------------------------------------------- /app/policies/repository_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/repository_policy.rb -------------------------------------------------------------------------------- /app/policies/tag_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/tag_policy.rb -------------------------------------------------------------------------------- /app/policies/team_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/team_policy.rb -------------------------------------------------------------------------------- /app/policies/team_user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/team_user_policy.rb -------------------------------------------------------------------------------- /app/policies/webhook_delivery_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/webhook_delivery_policy.rb -------------------------------------------------------------------------------- /app/policies/webhook_header_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/webhook_header_policy.rb -------------------------------------------------------------------------------- /app/policies/webhook_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/policies/webhook_policy.rb -------------------------------------------------------------------------------- /app/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/README.md -------------------------------------------------------------------------------- /app/services/base_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/base_service.rb -------------------------------------------------------------------------------- /app/services/base_validate_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/base_validate_service.rb -------------------------------------------------------------------------------- /app/services/helpers/change_name_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/helpers/change_name_description.rb -------------------------------------------------------------------------------- /app/services/namespaces/build_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/namespaces/build_service.rb -------------------------------------------------------------------------------- /app/services/namespaces/create_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/namespaces/create_service.rb -------------------------------------------------------------------------------- /app/services/namespaces/destroy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/namespaces/destroy_service.rb -------------------------------------------------------------------------------- /app/services/namespaces/update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/namespaces/update_service.rb -------------------------------------------------------------------------------- /app/services/registries/base_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/registries/base_service.rb -------------------------------------------------------------------------------- /app/services/registries/create_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/registries/create_service.rb -------------------------------------------------------------------------------- /app/services/registries/update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/registries/update_service.rb -------------------------------------------------------------------------------- /app/services/registries/validate_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/registries/validate_service.rb -------------------------------------------------------------------------------- /app/services/repositories/destroy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/repositories/destroy_service.rb -------------------------------------------------------------------------------- /app/services/repositories/update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/repositories/update_service.rb -------------------------------------------------------------------------------- /app/services/tags/destroy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/tags/destroy_service.rb -------------------------------------------------------------------------------- /app/services/team_users/base_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/team_users/base_service.rb -------------------------------------------------------------------------------- /app/services/team_users/build_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/team_users/build_service.rb -------------------------------------------------------------------------------- /app/services/team_users/create_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/team_users/create_service.rb -------------------------------------------------------------------------------- /app/services/team_users/destroy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/team_users/destroy_service.rb -------------------------------------------------------------------------------- /app/services/team_users/update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/team_users/update_service.rb -------------------------------------------------------------------------------- /app/services/teams/create_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/teams/create_service.rb -------------------------------------------------------------------------------- /app/services/teams/destroy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/teams/destroy_service.rb -------------------------------------------------------------------------------- /app/services/teams/migration_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/teams/migration_service.rb -------------------------------------------------------------------------------- /app/services/teams/update_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/services/teams/update_service.rb -------------------------------------------------------------------------------- /app/validators/http_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/validators/http_validator.rb -------------------------------------------------------------------------------- /app/validators/namespace_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/validators/namespace_validator.rb -------------------------------------------------------------------------------- /app/validators/unique_tag_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/validators/unique_tag_validator.rb -------------------------------------------------------------------------------- /app/views/admin/activities/index.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/activities/index.csv.slim -------------------------------------------------------------------------------- /app/views/admin/activities/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/activities/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/dashboard/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/dashboard/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/registries/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/registries/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/registries/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/registries/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/registries/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/registries/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/users/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/users/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/admin/users/new.html.slim -------------------------------------------------------------------------------- /app/views/auth/omniauth_registrations/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/auth/omniauth_registrations/new.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/_repository.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/_repository.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/_star.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/_star.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/index.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/partials/_portus_user_alert.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/partials/_portus_user_alert.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/partials/_recent_activities.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/partials/_recent_activities.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/partials/_repositories.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/partials/_repositories.html.slim -------------------------------------------------------------------------------- /app/views/dashboard/partials/_stats.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/dashboard/partials/_stats.html.slim -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/devise/passwords/edit.html.slim -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/devise/passwords/new.html.slim -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/devise/registrations/edit.html.slim -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/devise/registrations/new.html.slim -------------------------------------------------------------------------------- /app/views/devise/sessions/_social_login.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/devise/sessions/_social_login.html.slim -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/devise/sessions/new.html.slim -------------------------------------------------------------------------------- /app/views/errors/401.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/errors/401.html.slim -------------------------------------------------------------------------------- /app/views/errors/404.html.slim: -------------------------------------------------------------------------------- 1 | | The page you are looking for does not exist. 2 | -------------------------------------------------------------------------------- /app/views/errors/422.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/errors/422.html.slim -------------------------------------------------------------------------------- /app/views/errors/500.csv.slim: -------------------------------------------------------------------------------- 1 | Internal Server Error -------------------------------------------------------------------------------- /app/views/errors/500.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/errors/500.html.erb -------------------------------------------------------------------------------- /app/views/errors/_status_title.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/errors/_status_title.html.slim -------------------------------------------------------------------------------- /app/views/errors/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/errors/show.html.erb -------------------------------------------------------------------------------- /app/views/explore/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/explore/index.slim -------------------------------------------------------------------------------- /app/views/explore/partials/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/explore/partials/_form.html.slim -------------------------------------------------------------------------------- /app/views/explore/partials/_top.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/explore/partials/_top.html.slim -------------------------------------------------------------------------------- /app/views/help/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/help/index.slim -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/kaminari/_first_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.slim: -------------------------------------------------------------------------------- 1 | li.disabled 2 | = link_to raw(t 'views.pagination.truncate'), '#' 3 | -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/kaminari/_last_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/kaminari/_next_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/kaminari/_page.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/kaminari/_paginator.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/kaminari/_prev_page.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/authentication.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/layouts/authentication.html.slim -------------------------------------------------------------------------------- /app/views/layouts/errors.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/layouts/errors.html.slim -------------------------------------------------------------------------------- /app/views/namespaces/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/namespaces/index.html.erb -------------------------------------------------------------------------------- /app/views/namespaces/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/namespaces/show.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_change_team.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_change_team.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_change_team.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_change_team.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_create.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_create.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_create.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_create.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_delete.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_delete.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_delete.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_delete.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_private.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_private.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_private.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_private.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_public.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_public.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/namespace/_public.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/namespace/_public.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/registry/_delete.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/registry/_delete.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/registry/_delete.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/registry/_delete.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/registry/_remove_team.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/registry/_remove_team.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/registry/_remove_team.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/registry/_remove_team.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/repository/_delete.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/repository/_delete.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/repository/_delete.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/repository/_delete.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/repository/_push.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/repository/_push.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/repository/_push.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/repository/_push.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_add_member.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_add_member.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_add_member.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_add_member.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_change_team_name.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_change_team_name.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_change_team_name.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_change_team_name.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_create.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_create.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_create.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_create.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_migration.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_migration.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_remove_member.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_remove_member.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/team/_remove_member.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/team/_remove_member.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/user/_delete.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/user/_delete.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/user/_delete.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/user/_delete.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_create.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_create.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_create.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_create.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_destroy.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_destroy.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_destroy.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_destroy.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_disabled.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_disabled.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_disabled.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_disabled.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_enabled.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_enabled.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_enabled.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_enabled.html.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_update.csv.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_update.csv.slim -------------------------------------------------------------------------------- /app/views/public_activity/webhook/_update.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/public_activity/webhook/_update.html.slim -------------------------------------------------------------------------------- /app/views/repositories/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/repositories/index.html.slim -------------------------------------------------------------------------------- /app/views/repositories/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/repositories/show.html.slim -------------------------------------------------------------------------------- /app/views/search/_desktop_categories.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/search/_desktop_categories.html.slim -------------------------------------------------------------------------------- /app/views/search/_mobile_categories.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/search/_mobile_categories.html.slim -------------------------------------------------------------------------------- /app/views/search/_namespaces.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/search/_namespaces.html.slim -------------------------------------------------------------------------------- /app/views/search/_repositories.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/search/_repositories.html.slim -------------------------------------------------------------------------------- /app/views/search/_teams.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/search/_teams.html.slim -------------------------------------------------------------------------------- /app/views/search/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/search/index.html.slim -------------------------------------------------------------------------------- /app/views/shared/_aside.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/shared/_aside.html.slim -------------------------------------------------------------------------------- /app/views/shared/_config.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/shared/_config.html.slim -------------------------------------------------------------------------------- /app/views/shared/_header.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/shared/_header.html.slim -------------------------------------------------------------------------------- /app/views/shared/_notification.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/shared/_notification.html.slim -------------------------------------------------------------------------------- /app/views/shared/_notifications.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/shared/_notifications.html.slim -------------------------------------------------------------------------------- /app/views/shared/_search.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/shared/_search.html.slim -------------------------------------------------------------------------------- /app/views/tags/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/tags/show.html.slim -------------------------------------------------------------------------------- /app/views/teams/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/teams/index.html.slim -------------------------------------------------------------------------------- /app/views/teams/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/teams/show.html.slim -------------------------------------------------------------------------------- /app/views/webhooks/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/webhooks/index.html.slim -------------------------------------------------------------------------------- /app/views/webhooks/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/app/views/webhooks/show.html.slim -------------------------------------------------------------------------------- /bin/background.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/background.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/check_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/check_db.rb -------------------------------------------------------------------------------- /bin/ci/after_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/ci/after_script.sh -------------------------------------------------------------------------------- /bin/ci/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/ci/before_script.sh -------------------------------------------------------------------------------- /bin/ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/ci/install.sh -------------------------------------------------------------------------------- /bin/ci/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/ci/run.sh -------------------------------------------------------------------------------- /bin/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/client.rb -------------------------------------------------------------------------------- /bin/generate_test_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/generate_test_data.rb -------------------------------------------------------------------------------- /bin/health.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/health.rb -------------------------------------------------------------------------------- /bin/integration/integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/integration/integration.rb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/schema_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/schema_check.rb -------------------------------------------------------------------------------- /bin/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/security.rb -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/test-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/bin/test-integration.sh -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/brakeman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/brakeman.yml -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/config.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/01_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/01_database.rb -------------------------------------------------------------------------------- /config/initializers/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/activity.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/checks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/checks.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/devise/oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/devise/oauth.rb -------------------------------------------------------------------------------- /config/initializers/draw_def.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/draw_def.rb -------------------------------------------------------------------------------- /config/initializers/environment_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/environment_check.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/gravatar_image_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/gravatar_image_tag.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/ldap_authenticatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/ldap_authenticatable.rb -------------------------------------------------------------------------------- /config/initializers/mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/mail.rb -------------------------------------------------------------------------------- /config/initializers/mailer_url_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/mailer_url_options.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/portus_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/portus_user.rb -------------------------------------------------------------------------------- /config/initializers/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/rails.rb -------------------------------------------------------------------------------- /config/initializers/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/registry.rb -------------------------------------------------------------------------------- /config/initializers/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/ruby.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/swagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/swagger.rb -------------------------------------------------------------------------------- /config/initializers/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/version.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/routes/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/admin.rb -------------------------------------------------------------------------------- /config/routes/namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/namespaces.rb -------------------------------------------------------------------------------- /config/routes/registry_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/registry_api.rb -------------------------------------------------------------------------------- /config/routes/repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/repositories.rb -------------------------------------------------------------------------------- /config/routes/root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/root.rb -------------------------------------------------------------------------------- /config/routes/teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/teams.rb -------------------------------------------------------------------------------- /config/routes/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/routes/users.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/config/webpack.js -------------------------------------------------------------------------------- /db/migrate/20150414104850_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150414104850_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20150416121417_create_namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150416121417_create_namespaces.rb -------------------------------------------------------------------------------- /db/migrate/20150416121842_create_repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150416121842_create_repositories.rb -------------------------------------------------------------------------------- /db/migrate/20150416122030_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150416122030_create_tags.rb -------------------------------------------------------------------------------- /db/migrate/20150417095841_create_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150417095841_create_teams.rb -------------------------------------------------------------------------------- /db/migrate/20150426115313_create_team_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150426115313_create_team_users.rb -------------------------------------------------------------------------------- /db/migrate/20150427092952_add_admin_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150427092952_add_admin_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150428081205_add_owner_to_team_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150428081205_add_owner_to_team_users.rb -------------------------------------------------------------------------------- /db/migrate/20150428081530_remove_owner_id_from_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150428081530_remove_owner_id_from_teams.rb -------------------------------------------------------------------------------- /db/migrate/20150429102443_add_role_to_team_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150429102443_add_role_to_team_user.rb -------------------------------------------------------------------------------- /db/migrate/20150429185051_add_public_to_namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150429185051_add_public_to_namespace.rb -------------------------------------------------------------------------------- /db/migrate/20150507155138_create_registries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150507155138_create_registries.rb -------------------------------------------------------------------------------- /db/migrate/20150507155425_add_registry_id_to_namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150507155425_add_registry_id_to_namespaces.rb -------------------------------------------------------------------------------- /db/migrate/20150512105052_create_activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150512105052_create_activities.rb -------------------------------------------------------------------------------- /db/migrate/20150513133049_add_index_to_activities_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150513133049_add_index_to_activities_key.rb -------------------------------------------------------------------------------- /db/migrate/20150515111638_add_author_to_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150515111638_add_author_to_tag.rb -------------------------------------------------------------------------------- /db/migrate/20150515114145_add_global_flag_to_namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150515114145_add_global_flag_to_namespaces.rb -------------------------------------------------------------------------------- /db/migrate/20150518142223_add_hidden_to_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150518142223_add_hidden_to_teams.rb -------------------------------------------------------------------------------- /db/migrate/20150522140822_add_index_name_on_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150522140822_add_index_name_on_teams.rb -------------------------------------------------------------------------------- /db/migrate/20150722194840_create_stars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150722194840_create_stars.rb -------------------------------------------------------------------------------- /db/migrate/20150729153854_add_enabled_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150729153854_add_enabled_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150805130722_create_crono_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150805130722_create_crono_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20150831131727_add_ldap_name_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150831131727_add_ldap_name_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150915130327_add_lockable_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150915130327_add_lockable_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20150923091830_add_use_ssl_to_registries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150923091830_add_use_ssl_to_registries.rb -------------------------------------------------------------------------------- /db/migrate/20150924084635_add_attribute_to_teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20150924084635_add_attribute_to_teams.rb -------------------------------------------------------------------------------- /db/migrate/20151112003047_add_digest_to_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20151112003047_add_digest_to_tags.rb -------------------------------------------------------------------------------- /db/migrate/20151113162311_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20151113162311_create_comments.rb -------------------------------------------------------------------------------- /db/migrate/20151113162513_add_author_to_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20151113162513_add_author_to_comment.rb -------------------------------------------------------------------------------- /db/migrate/20151117181723_create_application_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20151117181723_create_application_tokens.rb -------------------------------------------------------------------------------- /db/migrate/20151124150353_removetitle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20151124150353_removetitle.rb -------------------------------------------------------------------------------- /db/migrate/20151215152138_remove_log_from_crono_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20151215152138_remove_log_from_crono_job.rb -------------------------------------------------------------------------------- /db/migrate/20160411150441_create_webhooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160411150441_create_webhooks.rb -------------------------------------------------------------------------------- /db/migrate/20160411150458_create_webhook_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160411150458_create_webhook_headers.rb -------------------------------------------------------------------------------- /db/migrate/20160411150745_create_webhook_deliveries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160411150745_create_webhook_deliveries.rb -------------------------------------------------------------------------------- /db/migrate/20160422075603_add_image_id_to_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160422075603_add_image_id_to_tag.rb -------------------------------------------------------------------------------- /db/migrate/20160510153011_add_namespace_id_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160510153011_add_namespace_id_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160526105216_remove_index_on_ldap_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160526105216_remove_index_on_ldap_users.rb -------------------------------------------------------------------------------- /db/migrate/20160531151718_add_display_name_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160531151718_add_display_name_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20160825105515_add_username_to_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160825105515_add_username_to_tags.rb -------------------------------------------------------------------------------- /db/migrate/20160927141850_create_registry_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20160927141850_create_registry_events.rb -------------------------------------------------------------------------------- /db/migrate/20170630194953_add_omniauth_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20170630194953_add_omniauth_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20171014192702_add_indexes_to_activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20171014192702_add_indexes_to_activities.rb -------------------------------------------------------------------------------- /db/migrate/20171220095321_drop_crono_jobs_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20171220095321_drop_crono_jobs_table.rb -------------------------------------------------------------------------------- /db/migrate/20180109114124_add_name_to_webhooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20180109114124_add_name_to_webhooks.rb -------------------------------------------------------------------------------- /db/migrate/20180409142550_create_vulnerabilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20180409142550_create_vulnerabilities.rb -------------------------------------------------------------------------------- /db/migrate/20180409143945_create_scan_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20180409143945_create_scan_results.rb -------------------------------------------------------------------------------- /db/migrate/20180612145708_add_bot_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20180612145708_add_bot_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20190103113934_add_checked_at_to_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20190103113934_add_checked_at_to_team.rb -------------------------------------------------------------------------------- /db/migrate/20190109112643_add_size_to_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20190109112643_add_size_to_tags.rb -------------------------------------------------------------------------------- /db/migrate/20190115133935_add_pulled_at_to_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20190115133935_add_pulled_at_to_tags.rb -------------------------------------------------------------------------------- /db/migrate/20190314173309_change_tag_size.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/migrate/20190314173309_change_tag_size.rb -------------------------------------------------------------------------------- /db/schema.mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/schema.mysql.rb -------------------------------------------------------------------------------- /db/schema.postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/schema.postgresql.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/doc/database.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/docker/init -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/compose/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/.env -------------------------------------------------------------------------------- /examples/compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/README.md -------------------------------------------------------------------------------- /examples/compose/clair/clair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/clair/clair.yml -------------------------------------------------------------------------------- /examples/compose/docker-compose.clair-ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/docker-compose.clair-ssl.yml -------------------------------------------------------------------------------- /examples/compose/docker-compose.clair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/docker-compose.clair.yml -------------------------------------------------------------------------------- /examples/compose/docker-compose.insecure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/docker-compose.insecure.yml -------------------------------------------------------------------------------- /examples/compose/docker-compose.ldap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/docker-compose.ldap.yml -------------------------------------------------------------------------------- /examples/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/docker-compose.yml -------------------------------------------------------------------------------- /examples/compose/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/nginx/nginx.conf -------------------------------------------------------------------------------- /examples/compose/registry/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/registry/config.yml -------------------------------------------------------------------------------- /examples/compose/registry/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/compose/registry/init -------------------------------------------------------------------------------- /examples/compose/secrets/.gitignore: -------------------------------------------------------------------------------- 1 | portus.* 2 | -------------------------------------------------------------------------------- /examples/development/compose/bootstrap-webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/compose/bootstrap-webpack -------------------------------------------------------------------------------- /examples/development/compose/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/compose/config.yml -------------------------------------------------------------------------------- /examples/development/compose/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/compose/init.rb -------------------------------------------------------------------------------- /examples/development/compose/portus.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/compose/portus.crt -------------------------------------------------------------------------------- /examples/development/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/postgresql/README.md -------------------------------------------------------------------------------- /examples/development/postgresql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/postgresql/docker-compose.yml -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/README.md: -------------------------------------------------------------------------------- 1 | Password: `portus` 2 | -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/ca_bundle/ca.crt -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/ca_bundle/ca.key -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/ca_bundle/server.crt -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/ca_bundle/server.csr -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/ca_bundle/server.key -------------------------------------------------------------------------------- /examples/development/vagrant/conf/ca_bundle/server.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/ca_bundle/server.pub -------------------------------------------------------------------------------- /examples/development/vagrant/conf/registry-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/conf/registry-config.yml -------------------------------------------------------------------------------- /examples/development/vagrant/provision_client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/provision_client -------------------------------------------------------------------------------- /examples/development/vagrant/provision_portus_by_rpms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/provision_portus_by_rpms -------------------------------------------------------------------------------- /examples/development/vagrant/provision_registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/provision_registry -------------------------------------------------------------------------------- /examples/development/vagrant/setup_private_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/examples/development/vagrant/setup_private_network -------------------------------------------------------------------------------- /examples/kubernetes/README.md: -------------------------------------------------------------------------------- 1 | Under construction. See [PR #1311](https://github.com/SUSE/Portus/pull/1311). 2 | -------------------------------------------------------------------------------- /lib/api/entities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/entities.rb -------------------------------------------------------------------------------- /lib/api/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers.rb -------------------------------------------------------------------------------- /lib/api/helpers/application_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/application_tokens.rb -------------------------------------------------------------------------------- /lib/api/helpers/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/comments.rb -------------------------------------------------------------------------------- /lib/api/helpers/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/errors.rb -------------------------------------------------------------------------------- /lib/api/helpers/namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/namespaces.rb -------------------------------------------------------------------------------- /lib/api/helpers/ordering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/ordering.rb -------------------------------------------------------------------------------- /lib/api/helpers/pagination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/pagination.rb -------------------------------------------------------------------------------- /lib/api/helpers/repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/repositories.rb -------------------------------------------------------------------------------- /lib/api/helpers/teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/teams.rb -------------------------------------------------------------------------------- /lib/api/helpers/webhooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/helpers/webhooks.rb -------------------------------------------------------------------------------- /lib/api/root_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/root_api.rb -------------------------------------------------------------------------------- /lib/api/v1/application_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/application_tokens.rb -------------------------------------------------------------------------------- /lib/api/v1/health.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/health.rb -------------------------------------------------------------------------------- /lib/api/v1/namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/namespaces.rb -------------------------------------------------------------------------------- /lib/api/v1/ordering_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/ordering_params.rb -------------------------------------------------------------------------------- /lib/api/v1/pagination_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/pagination_params.rb -------------------------------------------------------------------------------- /lib/api/v1/registries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/registries.rb -------------------------------------------------------------------------------- /lib/api/v1/repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/repositories.rb -------------------------------------------------------------------------------- /lib/api/v1/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/tags.rb -------------------------------------------------------------------------------- /lib/api/v1/teams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/teams.rb -------------------------------------------------------------------------------- /lib/api/v1/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/users.rb -------------------------------------------------------------------------------- /lib/api/v1/vulnerabilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/v1/vulnerabilities.rb -------------------------------------------------------------------------------- /lib/api/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/api/version.rb -------------------------------------------------------------------------------- /lib/omni_auth/strategies/bitbucket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/omni_auth/strategies/bitbucket.rb -------------------------------------------------------------------------------- /lib/portus/auth_from_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/auth_from_token.rb -------------------------------------------------------------------------------- /lib/portus/auth_scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/auth_scope.rb -------------------------------------------------------------------------------- /lib/portus/background/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/background/README.md -------------------------------------------------------------------------------- /lib/portus/background/garbage_collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/background/garbage_collector.rb -------------------------------------------------------------------------------- /lib/portus/background/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/background/ldap.rb -------------------------------------------------------------------------------- /lib/portus/background/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/background/registry.rb -------------------------------------------------------------------------------- /lib/portus/background/security_scanning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/background/security_scanning.rb -------------------------------------------------------------------------------- /lib/portus/background/sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/background/sync.rb -------------------------------------------------------------------------------- /lib/portus/checks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/checks.rb -------------------------------------------------------------------------------- /lib/portus/cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/cmd.rb -------------------------------------------------------------------------------- /lib/portus/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/db.rb -------------------------------------------------------------------------------- /lib/portus/deprecation_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/deprecation_error.rb -------------------------------------------------------------------------------- /lib/portus/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/errors.rb -------------------------------------------------------------------------------- /lib/portus/health.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/health.rb -------------------------------------------------------------------------------- /lib/portus/health_checks/clair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/health_checks/clair.rb -------------------------------------------------------------------------------- /lib/portus/health_checks/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/health_checks/db.rb -------------------------------------------------------------------------------- /lib/portus/health_checks/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/health_checks/ldap.rb -------------------------------------------------------------------------------- /lib/portus/health_checks/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/health_checks/registry.rb -------------------------------------------------------------------------------- /lib/portus/http_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/http_helpers.rb -------------------------------------------------------------------------------- /lib/portus/jwt_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/jwt_token.rb -------------------------------------------------------------------------------- /lib/portus/ldap/adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/adapter.rb -------------------------------------------------------------------------------- /lib/portus/ldap/authenticatable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/authenticatable.rb -------------------------------------------------------------------------------- /lib/portus/ldap/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/configuration.rb -------------------------------------------------------------------------------- /lib/portus/ldap/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/connection.rb -------------------------------------------------------------------------------- /lib/portus/ldap/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/errors.rb -------------------------------------------------------------------------------- /lib/portus/ldap/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/login.rb -------------------------------------------------------------------------------- /lib/portus/ldap/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/ldap/search.rb -------------------------------------------------------------------------------- /lib/portus/mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/mail.rb -------------------------------------------------------------------------------- /lib/portus/migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/migrate.rb -------------------------------------------------------------------------------- /lib/portus/registry_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/registry_client.rb -------------------------------------------------------------------------------- /lib/portus/registry_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/registry_notification.rb -------------------------------------------------------------------------------- /lib/portus/request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/request_error.rb -------------------------------------------------------------------------------- /lib/portus/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/security.rb -------------------------------------------------------------------------------- /lib/portus/security_backends/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/security_backends/base.rb -------------------------------------------------------------------------------- /lib/portus/security_backends/clair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/security_backends/clair.rb -------------------------------------------------------------------------------- /lib/portus/security_backends/dummy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/security_backends/dummy.rb -------------------------------------------------------------------------------- /lib/portus/security_backends/fixtures/dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/security_backends/fixtures/dummy.json -------------------------------------------------------------------------------- /lib/portus/security_backends/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /lib/portus/security_backends/zypper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/security_backends/zypper.rb -------------------------------------------------------------------------------- /lib/portus/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/portus/test.rb -------------------------------------------------------------------------------- /lib/tasks/annotate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/annotate.rake -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/assets.rake -------------------------------------------------------------------------------- /lib/tasks/brakeman.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/brakeman.rake -------------------------------------------------------------------------------- /lib/tasks/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/helpers.rb -------------------------------------------------------------------------------- /lib/tasks/info.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/info.rake -------------------------------------------------------------------------------- /lib/tasks/portus/admin.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/portus/admin.rake -------------------------------------------------------------------------------- /lib/tasks/portus/api.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/portus/api.rake -------------------------------------------------------------------------------- /lib/tasks/portus/db.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/portus/db.rake -------------------------------------------------------------------------------- /lib/tasks/portus/registry.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/portus/registry.rake -------------------------------------------------------------------------------- /lib/tasks/portus/tags.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/portus/tags.rake -------------------------------------------------------------------------------- /lib/tasks/portus/user.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/portus/user.rake -------------------------------------------------------------------------------- /lib/tasks/release/bump.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/release/bump.rake -------------------------------------------------------------------------------- /lib/tasks/release/prepare.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/release/prepare.rake -------------------------------------------------------------------------------- /lib/tasks/test/git_validate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/test/git_validate.rake -------------------------------------------------------------------------------- /lib/tasks/test/integration.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/test/integration.rake -------------------------------------------------------------------------------- /lib/tasks/yarn.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/lib/tasks/yarn.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/package.json -------------------------------------------------------------------------------- /packaging/suse/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | Portus.spec 3 | 4 | -------------------------------------------------------------------------------- /packaging/suse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/README.md -------------------------------------------------------------------------------- /packaging/suse/conf/registry.config.yml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/conf/registry.config.yml.in -------------------------------------------------------------------------------- /packaging/suse/make_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/make_spec.sh -------------------------------------------------------------------------------- /packaging/suse/package_and_push_to_obs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/package_and_push_to_obs.sh -------------------------------------------------------------------------------- /packaging/suse/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/patches/README -------------------------------------------------------------------------------- /packaging/suse/portus.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/portus.spec.in -------------------------------------------------------------------------------- /packaging/suse/release/.gitignore: -------------------------------------------------------------------------------- 1 | project.xml 2 | -------------------------------------------------------------------------------- /packaging/suse/release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/release/README -------------------------------------------------------------------------------- /packaging/suse/release/project.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/release/project.xml.template -------------------------------------------------------------------------------- /packaging/suse/release/projectconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/release/projectconfig.txt -------------------------------------------------------------------------------- /packaging/suse/release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/release/release.sh -------------------------------------------------------------------------------- /packaging/suse/rubygem_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/packaging/suse/rubygem_check.rb -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/android-chrome-36x36.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/android-chrome-48x48.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/android-chrome-72x72.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/android-chrome-96x96.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/manifest.json -------------------------------------------------------------------------------- /public/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /public/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /public/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/landing.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/landing.html.in -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/api/grape_api/v1/application_tokens_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/application_tokens_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/health_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/health_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/namespaces_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/namespaces_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/registries_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/registries_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/repositories_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/repositories_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/root_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/root_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/tags_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/teams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/teams_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/users_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/version_spec.rb -------------------------------------------------------------------------------- /spec/api/grape_api/v1/vulnerabilities_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/grape_api/v1/vulnerabilities_spec.rb -------------------------------------------------------------------------------- /spec/api/helpers/namespaces_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/helpers/namespaces_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/v2/events_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/ping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/v2/ping_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/api/v2/token_spec.rb -------------------------------------------------------------------------------- /spec/factories/activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/activities.rb -------------------------------------------------------------------------------- /spec/factories/application_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/application_token.rb -------------------------------------------------------------------------------- /spec/factories/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/comments.rb -------------------------------------------------------------------------------- /spec/factories/namespaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/namespaces.rb -------------------------------------------------------------------------------- /spec/factories/registries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/registries.rb -------------------------------------------------------------------------------- /spec/factories/registry_raw_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/registry_raw_event.rb -------------------------------------------------------------------------------- /spec/factories/repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/repositories.rb -------------------------------------------------------------------------------- /spec/factories/scan_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/scan_result.rb -------------------------------------------------------------------------------- /spec/factories/star.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/star.rb -------------------------------------------------------------------------------- /spec/factories/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/tag.rb -------------------------------------------------------------------------------- /spec/factories/teams_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/teams_factory.rb -------------------------------------------------------------------------------- /spec/factories/users_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/users_factory.rb -------------------------------------------------------------------------------- /spec/factories/vulnerability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/vulnerability.rb -------------------------------------------------------------------------------- /spec/factories/webhook_deliveries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/webhook_deliveries.rb -------------------------------------------------------------------------------- /spec/factories/webhook_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/webhook_headers.rb -------------------------------------------------------------------------------- /spec/factories/webhooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/factories/webhooks.rb -------------------------------------------------------------------------------- /spec/helpers/activities_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/activities_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/namespaces_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/namespaces_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/registries_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/registries_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/repositories_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/repositories_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/search_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/search_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/sessions_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/sessions_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/teams_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/helpers/teams_helper_spec.rb -------------------------------------------------------------------------------- /spec/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/README.md -------------------------------------------------------------------------------- /spec/integration/events.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/events.bats -------------------------------------------------------------------------------- /spec/integration/health.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/health.bats -------------------------------------------------------------------------------- /spec/integration/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers.bash -------------------------------------------------------------------------------- /spec/integration/helpers/curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/curl.rb -------------------------------------------------------------------------------- /spec/integration/helpers/delete.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/delete.rb -------------------------------------------------------------------------------- /spec/integration/helpers/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/eval.rb -------------------------------------------------------------------------------- /spec/integration/helpers/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/ldap.rb -------------------------------------------------------------------------------- /spec/integration/helpers/wait_event_done.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/wait_event_done.rb -------------------------------------------------------------------------------- /spec/integration/helpers/wait_ldap_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/wait_ldap_check.rb -------------------------------------------------------------------------------- /spec/integration/helpers/waiter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/helpers/waiter.rb -------------------------------------------------------------------------------- /spec/integration/ldap/health.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/ldap/health.bats -------------------------------------------------------------------------------- /spec/integration/ldap/login.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/ldap/login.bats -------------------------------------------------------------------------------- /spec/integration/ldap/team.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/ldap/team.bats -------------------------------------------------------------------------------- /spec/integration/ldap/user.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/ldap/user.bats -------------------------------------------------------------------------------- /spec/integration/login.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/login.bats -------------------------------------------------------------------------------- /spec/integration/profiles/full.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/profiles/full.rb -------------------------------------------------------------------------------- /spec/integration/profiles/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/profiles/ldap.rb -------------------------------------------------------------------------------- /spec/integration/profiles/minimal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/profiles/minimal.rb -------------------------------------------------------------------------------- /spec/integration/profiles/shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/profiles/shared.rb -------------------------------------------------------------------------------- /spec/integration/push.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/integration/push.bats -------------------------------------------------------------------------------- /spec/javascripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/.eslintrc -------------------------------------------------------------------------------- /spec/javascripts/modules/repositories/tag.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/modules/repositories/tag.spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/teams/form.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/modules/teams/form.spec.js -------------------------------------------------------------------------------- /spec/javascripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/setup.js -------------------------------------------------------------------------------- /spec/javascripts/shared/loading-icon.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/shared/loading-icon.spec.js -------------------------------------------------------------------------------- /spec/javascripts/shared/table-pagination.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/shared/table-pagination.spec.js -------------------------------------------------------------------------------- /spec/javascripts/shared/toggle-link.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/shared/toggle-link.spec.js -------------------------------------------------------------------------------- /spec/javascripts/utils/comparator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/utils/comparator.spec.js -------------------------------------------------------------------------------- /spec/javascripts/utils/date.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/utils/date.spec.js -------------------------------------------------------------------------------- /spec/javascripts/utils/range.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/javascripts/utils/range.spec.js -------------------------------------------------------------------------------- /spec/lib/omni_auth/strategies/bitbucket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/omni_auth/strategies/bitbucket_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/background/garbage_collector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/background/garbage_collector_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/background/ldap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/background/ldap_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/background/registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/background/registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/background/security_scanning_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/background/security_scanning_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/background/sync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/background/sync_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/db_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/db_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/deprecation_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/deprecation_error_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/jwt_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/jwt_token_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/ldap/authenticatable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/ldap/authenticatable_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/ldap/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/ldap/configuration_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/ldap/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/ldap/search_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/mail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/mail_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/migrate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/migrate_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/registry_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/registry_client_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/registry_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/registry_notification_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/request_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/request_error_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/security/clair_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/security/clair_spec.rb -------------------------------------------------------------------------------- /spec/lib/portus/security_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/lib/portus/security_spec.rb -------------------------------------------------------------------------------- /spec/models/application_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/application_token_spec.rb -------------------------------------------------------------------------------- /spec/models/comment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/comment_spec.rb -------------------------------------------------------------------------------- /spec/models/namespace/auth_scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/namespace/auth_scope_spec.rb -------------------------------------------------------------------------------- /spec/models/namespace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/namespace_spec.rb -------------------------------------------------------------------------------- /spec/models/registry/auth_scope_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/registry/auth_scope_spec.rb -------------------------------------------------------------------------------- /spec/models/registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/registry_spec.rb -------------------------------------------------------------------------------- /spec/models/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/repository_spec.rb -------------------------------------------------------------------------------- /spec/models/star_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/star_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/tag_spec.rb -------------------------------------------------------------------------------- /spec/models/team_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/team_spec.rb -------------------------------------------------------------------------------- /spec/models/team_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/team_user_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/webhook_delivery_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/webhook_delivery_spec.rb -------------------------------------------------------------------------------- /spec/models/webhook_header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/webhook_header_spec.rb -------------------------------------------------------------------------------- /spec/models/webhook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/models/webhook_spec.rb -------------------------------------------------------------------------------- /spec/policies/namespace_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/namespace_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/public_activity/activity_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/public_activity/activity_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/registry_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/registry_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/repository_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/repository_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/team_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/team_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/team_user_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/team_user_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/webhook_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/policies/webhook_policy_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/admin/activities_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/admin/activities_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/admin/registries_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/admin/registries_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/admin/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/admin/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v2/ping_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/api/v2/ping_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/auth/registrations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/auth/registrations_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/comments_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/comments_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/dashboard_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/dashboard_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/errors_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/errors_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/explore_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/explore_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/help_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/help_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/namespaces_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/namespaces_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/passwords_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/passwords_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/repositories_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/repositories_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/search_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/search_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/tags_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/tags_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/teams_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/teams_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/webhook_deliveries_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/webhook_deliveries_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/webhook_headers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/webhook_headers_controller_spec.rb -------------------------------------------------------------------------------- /spec/requests/webhooks_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/requests/webhooks_controller_spec.rb -------------------------------------------------------------------------------- /spec/routing/namespaces_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/routing/namespaces_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/repositories_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/routing/repositories_routing_spec.rb -------------------------------------------------------------------------------- /spec/services/namespaces/build_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/namespaces/build_service_spec.rb -------------------------------------------------------------------------------- /spec/services/namespaces/create_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/namespaces/create_service_spec.rb -------------------------------------------------------------------------------- /spec/services/namespaces/destroy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/namespaces/destroy_service_spec.rb -------------------------------------------------------------------------------- /spec/services/registries/create_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/registries/create_service_spec.rb -------------------------------------------------------------------------------- /spec/services/registries/validate_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/registries/validate_service_spec.rb -------------------------------------------------------------------------------- /spec/services/repositories/destroy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/repositories/destroy_service_spec.rb -------------------------------------------------------------------------------- /spec/services/repositories/update_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/repositories/update_service_spec.rb -------------------------------------------------------------------------------- /spec/services/tags/destroy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/tags/destroy_service_spec.rb -------------------------------------------------------------------------------- /spec/services/team_users/build_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/team_users/build_service_spec.rb -------------------------------------------------------------------------------- /spec/services/team_users/create_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/team_users/create_service_spec.rb -------------------------------------------------------------------------------- /spec/services/team_users/destroy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/team_users/destroy_service_spec.rb -------------------------------------------------------------------------------- /spec/services/team_users/update_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/team_users/update_service_spec.rb -------------------------------------------------------------------------------- /spec/services/teams/create_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/teams/create_service_spec.rb -------------------------------------------------------------------------------- /spec/services/teams/destroy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/teams/destroy_service_spec.rb -------------------------------------------------------------------------------- /spec/services/teams/migration_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/services/teams/migration_service_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/connection.rb -------------------------------------------------------------------------------- /spec/support/containers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/containers.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/devise.rb -------------------------------------------------------------------------------- /spec/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/helpers.rb -------------------------------------------------------------------------------- /spec/support/models/registry_raw_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/models/registry_raw_event.rb -------------------------------------------------------------------------------- /spec/support/registry_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/registry_events.rb -------------------------------------------------------------------------------- /spec/support/wait_for_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/support/wait_for_events.rb -------------------------------------------------------------------------------- /spec/system/admin/registries_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/admin/registries_spec.rb -------------------------------------------------------------------------------- /spec/system/admin/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/admin/users_spec.rb -------------------------------------------------------------------------------- /spec/system/application_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/application_spec.rb -------------------------------------------------------------------------------- /spec/system/application_tokens_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/application_tokens_spec.rb -------------------------------------------------------------------------------- /spec/system/auth/login_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/auth/login_feature_spec.rb -------------------------------------------------------------------------------- /spec/system/auth/logout_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/auth/logout_feature_spec.rb -------------------------------------------------------------------------------- /spec/system/auth/omniauth_registrations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/auth/omniauth_registrations_spec.rb -------------------------------------------------------------------------------- /spec/system/auth/profile_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/auth/profile_feature_spec.rb -------------------------------------------------------------------------------- /spec/system/auth/signup_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/auth/signup_feature_spec.rb -------------------------------------------------------------------------------- /spec/system/dashboard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/dashboard_spec.rb -------------------------------------------------------------------------------- /spec/system/errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/errors_spec.rb -------------------------------------------------------------------------------- /spec/system/explore_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/explore_spec.rb -------------------------------------------------------------------------------- /spec/system/forgotten_password_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/forgotten_password_spec.rb -------------------------------------------------------------------------------- /spec/system/gravatar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/gravatar_spec.rb -------------------------------------------------------------------------------- /spec/system/help_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/help_spec.rb -------------------------------------------------------------------------------- /spec/system/namespaces_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/namespaces_spec.rb -------------------------------------------------------------------------------- /spec/system/repositories_comments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/repositories_comments_spec.rb -------------------------------------------------------------------------------- /spec/system/repositories_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/repositories_spec.rb -------------------------------------------------------------------------------- /spec/system/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/tags_spec.rb -------------------------------------------------------------------------------- /spec/system/teams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/teams_spec.rb -------------------------------------------------------------------------------- /spec/system/webhooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/system/webhooks_spec.rb -------------------------------------------------------------------------------- /spec/vcr_cassettes/api_github_orgs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/api_github_orgs.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/api_github_teams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/api_github_teams.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/api_gitlab_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/api_gitlab_groups.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/background/clair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/background/clair.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/background/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/background/node.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/health/clair-bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/health/clair-bad.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/health/clair-ok.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/health/clair-ok.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/health/ok.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/health/ok.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/catalog_lots_of_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/catalog_lots_of_repos.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/catalog_lots_of_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/catalog_lots_of_tags.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/delete_blob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/delete_blob.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/delete_disabled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/delete_disabled.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/delete_missing_blob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/delete_missing_blob.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/get_image_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/get_image_manifest.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/get_image_manifest_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/get_image_manifest_tags.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/get_registry_catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/get_registry_catalog.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/get_registry_one_fails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/get_registry_one_fails.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/get_tags_list_webhook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/get_tags_list_webhook.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/invalid_delete_blob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/invalid_delete_blob.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/missing_credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/missing_credentials.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/registry/wrong_authentication.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/registry/wrong_authentication.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/security/clair-is-not-there.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/security/clair-is-not-there.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/security/clair-is-unknown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/security/clair-is-unknown.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/security/clair-wrong-get.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/security/clair-wrong-get.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/security/clair-wrong-post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/security/clair-wrong-post.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/security/clair.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/security/clair.yml -------------------------------------------------------------------------------- /spec/vcr_cassettes/security/clair_features_nil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/vcr_cassettes/security/clair_features_nil.yml -------------------------------------------------------------------------------- /spec/views/explore/index.html.slim_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/views/explore/index.html.slim_spec.rb -------------------------------------------------------------------------------- /spec/views/help/index.html.slim_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/views/help/index.html.slim_spec.rb -------------------------------------------------------------------------------- /spec/views/search/index.html.slim_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/spec/views/search/index.html.slim_spec.rb -------------------------------------------------------------------------------- /vendor/assets/fonts/pacifico.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/fonts/pacifico.woff2 -------------------------------------------------------------------------------- /vendor/assets/fonts/raleway-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/fonts/raleway-bold.woff2 -------------------------------------------------------------------------------- /vendor/assets/fonts/raleway-heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/fonts/raleway-heavy.woff2 -------------------------------------------------------------------------------- /vendor/assets/fonts/raleway-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/fonts/raleway-light.woff2 -------------------------------------------------------------------------------- /vendor/assets/fonts/raleway.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/fonts/raleway.woff2 -------------------------------------------------------------------------------- /vendor/assets/javascripts/lifeitup_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/javascripts/lifeitup_layout.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-typeahead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/bootstrap-typeahead.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/alerts.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/buttons.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/images.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/labels.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/layout.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/lifeitup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/lifeitup.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/links.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/lists.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/mixings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/mixings.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/panels.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/table.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/lifeitup/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/lifeitup/variables.scss -------------------------------------------------------------------------------- /vendor/assets/stylesheets/pacifico.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/pacifico.css.erb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/raleway.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/raleway.css.erb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/vue-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/vendor/assets/stylesheets/vue-multiselect.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSE/Portus/HEAD/yarn.lock --------------------------------------------------------------------------------