├── .codeclimate.yml ├── .dockerignore ├── .drone.yml ├── .gitignore ├── .guardrails └── ignore ├── .rspec ├── .ruby-version ├── CHANGELOG.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── Rakefile ├── VERSION ├── app ├── api │ ├── base.rb │ └── v2 │ │ ├── admin │ │ ├── abilities.rb │ │ ├── activities.rb │ │ ├── api_keys.rb │ │ ├── base.rb │ │ ├── entities │ │ │ ├── activity_with_user.rb │ │ │ ├── admin_activity.rb │ │ │ ├── document.rb │ │ │ ├── phone.rb │ │ │ ├── profile.rb │ │ │ ├── user_with_kyc.rb │ │ │ └── user_with_profile.rb │ │ ├── levels.rb │ │ ├── metrics.rb │ │ ├── named_params.rb │ │ ├── permissions.rb │ │ ├── profiles.rb │ │ ├── restrictions.rb │ │ └── users.rb │ │ ├── base.rb │ │ ├── entities │ │ ├── activity.rb │ │ ├── admin_label_view.rb │ │ ├── api_key.rb │ │ ├── base.rb │ │ ├── comment.rb │ │ ├── data_storage.rb │ │ ├── document.rb │ │ ├── label.rb │ │ ├── level.rb │ │ ├── permission.rb │ │ ├── phone.rb │ │ ├── profile.rb │ │ ├── restriction.rb │ │ ├── service_accounts.rb │ │ ├── user.rb │ │ ├── user_with_full_info.rb │ │ ├── user_with_kyc.rb │ │ └── user_with_profile.rb │ │ ├── exception_handlers.rb │ │ ├── identity │ │ ├── base.rb │ │ ├── general.rb │ │ ├── sessions.rb │ │ ├── users.rb │ │ └── utils.rb │ │ ├── management │ │ ├── api_keys.rb │ │ ├── base.rb │ │ ├── documents.rb │ │ ├── entities │ │ │ ├── document.rb │ │ │ ├── phone.rb │ │ │ ├── profile.rb │ │ │ ├── user_with_kyc.rb │ │ │ └── user_with_profile.rb │ │ ├── exceptions │ │ │ ├── authentication.rb │ │ │ └── base.rb │ │ ├── jwt_authentication_middleware.rb │ │ ├── labels.rb │ │ ├── otp.rb │ │ ├── phones.rb │ │ ├── profiles.rb │ │ ├── service_accounts.rb │ │ ├── tools.rb │ │ └── users.rb │ │ ├── named_params.rb │ │ ├── public │ │ ├── base.rb │ │ └── general.rb │ │ ├── queries │ │ ├── activity_filter.rb │ │ ├── user_filter.rb │ │ └── user_with_label_filter.rb │ │ ├── resource │ │ ├── addresses.rb │ │ ├── api_keys.rb │ │ ├── base.rb │ │ ├── data_storage.rb │ │ ├── documents.rb │ │ ├── labels.rb │ │ ├── otp.rb │ │ ├── phones.rb │ │ ├── profiles.rb │ │ ├── service_accounts.rb │ │ ├── users.rb │ │ └── utils.rb │ │ ├── utils.rb │ │ └── validations.rb ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ └── channels │ │ │ └── .keep │ └── stylesheets │ │ └── application.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── authorize_controller.rb │ └── concerns │ │ └── .keep ├── helpers │ ├── application_helper.rb │ └── salted_crc32.rb ├── jobs │ └── application_job.rb ├── mailers │ ├── application_mailer.rb │ └── postmaster.rb ├── models │ ├── ability.rb │ ├── activity.rb │ ├── admin_ability.rb │ ├── api_key.rb │ ├── application_record.rb │ ├── comment.rb │ ├── concerns │ │ ├── .keep │ │ ├── data_is_json_validator.rb │ │ ├── encryptable.rb │ │ ├── iso8601_time_format.rb │ │ └── trusty_agent_validator.rb │ ├── data_storage.rb │ ├── document.rb │ ├── label.rb │ ├── level.rb │ ├── permission.rb │ ├── phone.rb │ ├── profile.rb │ ├── restriction.rb │ ├── service_account.rb │ └── user.rb ├── services │ ├── api_keys_verifier.rb │ ├── captcha_service.rb │ ├── encryption_service.rb │ ├── event_mailer.rb │ ├── kyc_service.rb │ ├── mock_phone_verify_service.rb │ ├── password_strength_checker.rb │ ├── secret_storage.rb │ ├── totp_service.rb │ ├── twilio_sms_send_service.rb │ ├── twilio_verify_service.rb │ └── uid_generator.rb ├── uploaders │ ├── ali_uploader.rb │ └── upload_uploader.rb ├── views │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ └── postmaster │ │ ├── deposit_accepted.en.html.erb │ │ ├── email_confirmation.en.html.erb │ │ ├── email_confirmation.ru.html.erb │ │ ├── label.en.html.erb │ │ ├── new_beneficiary.en.html.erb │ │ ├── password_reset.en.html.erb │ │ ├── password_reset.ru.html.erb │ │ ├── session_create.en.html.erb │ │ └── withdraw_succeed.en.html.erb └── workers │ └── kyc │ └── kycaid │ ├── address_worker.rb │ ├── applicant_worker.rb │ ├── document_worker.rb │ └── verifications_worker.rb ├── bin ├── bundle ├── gendocs ├── init_config ├── init_vault ├── install_plugins ├── link_config ├── mailer ├── rails ├── rake ├── setup └── update ├── config.ru ├── config ├── abilities.yml ├── application.rb ├── authz_rules.yml ├── backend.yml ├── barong.yml ├── boot.rb ├── cable.yml ├── cloudflare_ips.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── api_pagination.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── barong.rb │ ├── barong_config.rb │ ├── carrierwave.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── document_types.rb │ ├── event_api.rb │ ├── exception_reporting.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mgn_api.rb │ ├── mime_types.rb │ ├── open_uri.rb │ ├── phone.rb │ ├── redis.rb │ ├── redis_store.rb │ ├── sessions_store.rb │ ├── sidekiq.rb │ ├── trusted_proxies.rb │ ├── user_storage_titles.rb │ ├── vault.rb │ ├── versioning.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── mailer.yml ├── management_api.yml ├── plugins.yml ├── puma.rb ├── routes.rb ├── seeds.yml ├── spring.rb ├── storage.yml └── templates │ ├── management_api_v1.yml.erb │ └── plugins.yml.erb ├── db ├── migrate │ ├── 20181101143041_create_all_tables.rb │ ├── 20181115100105_create_activities.rb │ ├── 20190108115333_add_referral_id_to_users_table.rb │ ├── 20190318133453_create_permissions.rb │ ├── 20190529114214_changes_in_activities_table.rb │ ├── 20190813112503_create_restrictions.rb │ ├── 20190827080317_add_data_field_to_users_table.rb │ ├── 20190902032709_add_state_profiles.rb │ ├── 20191122151630_create_data_storages.rb │ ├── 20191210090006_add_description_to_labels.rb │ ├── 20200318152130_add_default_state_to_profiles_table.rb │ ├── 20200429082843_add_code_and_type_in_restrictions_table.rb │ ├── 20200507104423_add_encrypted_secret.rb │ ├── 20200514123908_add_identificator_to_documents_table.rb │ ├── 20200602075906_add_author_to_profiles.rb │ ├── 20200609144734_create_comments.rb │ ├── 20200701115721_add_doc_category_to_documents.rb │ ├── 20200902125225_make_api_key_kid_unique.rb │ ├── 20200904153034_add_service_accounts_and_related_changes.rb │ ├── 20200929143711_add_encrypted_values_to_phones_profiles_documents.rb │ ├── 20201001112814_change_document_fields_position.rb │ ├── 20210218135634_change_owner_id_requirement.rb │ ├── 20210316083841_add_username_to_users.rb │ ├── 20210325133233_add_unique_index_on_labels.rb │ └── 20210407094208_add_user_ip_country_field_to_activities.rb ├── schema.rb ├── seeds.rb └── structure.sql ├── docs ├── api │ ├── barong_admin_api_v2.md │ ├── barong_management_api_v2.md │ ├── barong_user_api_v2.md │ └── swagger │ │ ├── admin_api.json │ │ ├── management_api.json │ │ └── user_api.json ├── configuration.md ├── development │ └── mailer.md ├── general │ ├── 2fa.md │ ├── activities.md │ ├── api-keys.md │ ├── auth0.md │ ├── captcha.md │ ├── encryption.md │ ├── errors.md │ ├── event_api.md │ ├── password_hashing.md │ └── profiles.md ├── images │ ├── amqp-mailer-schema.jpg │ ├── api-keys-1.jpeg │ ├── api-keys-2.jpeg │ ├── auth0_dashboard.png │ ├── auth0_pkce.png │ ├── auth0_settings.png │ └── mailer-retry.jpg ├── kycaid.md ├── mailer.md ├── migrations │ ├── 2_6_migration.md │ └── postgresql.md ├── releases │ ├── 2.1.0.md │ └── 2.3.0.md ├── restrictions.md ├── roadmap.md ├── security.md ├── service_accounts.md ├── tasks │ └── import.md ├── troubleshooting.md └── vault.md ├── lib ├── assets │ └── .keep ├── barong │ ├── activity_logger.rb │ ├── app.rb │ ├── auth0 │ │ └── jwt.rb │ ├── authorize.rb │ ├── cors │ │ └── validations.rb │ ├── event_api.rb │ ├── geo_ip.rb │ ├── json_log_formatter.rb │ ├── jwt.rb │ ├── keystore.rb │ ├── middleware.rb │ ├── middleware │ │ └── jwt_authenticator.rb │ ├── mock_sms.rb │ ├── redis_session.rb │ └── seed.rb └── tasks │ ├── activities.rake │ ├── apply_labels.rake │ ├── auto_annotate_models.rake │ ├── docker.rake │ ├── export.rake │ ├── generate.rake │ ├── import.rake │ ├── mailer.rake │ ├── migrate.rake │ ├── permissions.rake │ └── rotate.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── logo.png └── robots.txt ├── scripts └── benchmark │ ├── phones.rb │ └── profiles.rb ├── spec ├── api │ ├── base_spec.rb │ └── v2 │ │ ├── admin │ │ ├── abilities_spec.rb │ │ ├── activities_spec.rb │ │ ├── api_keys_spec.rb │ │ ├── levels_spec.rb │ │ ├── metrics_spec.rb │ │ ├── permissions_spec.rb │ │ ├── profiles_spec.rb │ │ ├── restrictions_spec.rb │ │ └── users_spec.rb │ │ ├── auth │ │ ├── audit_spec.rb │ │ ├── auth_spec.rb │ │ ├── csrf_spec.rb │ │ ├── rbac_spec.rb │ │ ├── restriction_spec.rb │ │ └── sessions_spec.rb │ │ ├── cors │ │ ├── cors_spec.rb │ │ └── validations_spec.rb │ │ ├── entities │ │ ├── activities_spec.rb │ │ ├── labels_spec.rb │ │ └── user_with_full_spec.rb │ │ ├── identity │ │ ├── general_spec.rb │ │ ├── sessions_spec.rb │ │ └── users_spec.rb │ │ ├── management │ │ ├── api_keys_spec.rb │ │ ├── documents_spec.rb │ │ ├── jwt_authentication_middleware_spec.rb │ │ ├── labels_spec.rb │ │ ├── otp_spec.rb │ │ ├── phones_spec.rb │ │ ├── profiles_spec.rb │ │ ├── service_accounts_spec.rb │ │ └── users_spec.rb │ │ ├── public │ │ └── general_spec.rb │ │ ├── queries │ │ └── activity_filter_spec.rb │ │ └── resource │ │ ├── addresses_spec.rb │ │ ├── api_keys_spec.rb │ │ ├── data_storage_spec.rb │ │ ├── documents_spec.rb │ │ ├── labels_spec.rb │ │ ├── otp_spec.rb │ │ ├── phones_spec.rb │ │ ├── profiles_spec.rb │ │ ├── service_accounts_spec.rb │ │ └── users_spec.rb ├── factories │ ├── activity.rb │ ├── api_keys.rb │ ├── document.rb │ ├── label.rb │ ├── level.rb │ ├── permission.rb │ ├── phones.rb │ ├── profile.rb │ ├── restriction.rb │ ├── service_account.rb │ └── user.rb ├── fixtures │ └── files │ │ └── documents_test.jpg ├── initializers │ ├── data_storage_titles_spec.rb │ └── document_types.spec.rb ├── lib │ └── barong │ │ ├── jwt_spec.rb │ │ ├── redis_session_spec.rb │ │ └── seed_spec.rb ├── mailers │ ├── postmaster_spec.rb │ └── previews │ │ └── mailer_preview.rb ├── models │ ├── ability_spec.rb │ ├── activity_spec.rb │ ├── api_key_spec.rb │ ├── document_spec.rb │ ├── label_spec.rb │ ├── level_spec.rb │ ├── phone_spec.rb │ ├── profile_spec.rb │ ├── restrictions_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── services │ ├── encryption_service_spec.rb │ ├── event_mailer_spec.rb │ ├── kyc_service_spec.rb │ └── vault_totp_spec.rb ├── spec_helper.rb ├── support │ ├── api_helpers.rb │ ├── bearer_context.rb │ ├── factory_bot.rb │ ├── geoip_context.rb │ ├── helper.rb │ └── redis_helper.rb └── workers │ ├── address_worker_spec.rb │ ├── applicant_worker_spec.rb │ ├── document_worker_spec.rb │ └── verification_worker_spec.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep └── vendor └── .keep /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/.dockerignore -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/.gitignore -------------------------------------------------------------------------------- /.guardrails/ignore: -------------------------------------------------------------------------------- 1 | spec/ 2 | docs/ 3 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.6.6 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.6.0 2 | -------------------------------------------------------------------------------- /app/api/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/base.rb -------------------------------------------------------------------------------- /app/api/v2/admin/abilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/abilities.rb -------------------------------------------------------------------------------- /app/api/v2/admin/activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/activities.rb -------------------------------------------------------------------------------- /app/api/v2/admin/api_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/api_keys.rb -------------------------------------------------------------------------------- /app/api/v2/admin/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/base.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/activity_with_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/activity_with_user.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/admin_activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/admin_activity.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/document.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/phone.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/profile.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/user_with_kyc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/user_with_kyc.rb -------------------------------------------------------------------------------- /app/api/v2/admin/entities/user_with_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/entities/user_with_profile.rb -------------------------------------------------------------------------------- /app/api/v2/admin/levels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/levels.rb -------------------------------------------------------------------------------- /app/api/v2/admin/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/metrics.rb -------------------------------------------------------------------------------- /app/api/v2/admin/named_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/named_params.rb -------------------------------------------------------------------------------- /app/api/v2/admin/permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/permissions.rb -------------------------------------------------------------------------------- /app/api/v2/admin/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/profiles.rb -------------------------------------------------------------------------------- /app/api/v2/admin/restrictions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/restrictions.rb -------------------------------------------------------------------------------- /app/api/v2/admin/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/admin/users.rb -------------------------------------------------------------------------------- /app/api/v2/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/base.rb -------------------------------------------------------------------------------- /app/api/v2/entities/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/activity.rb -------------------------------------------------------------------------------- /app/api/v2/entities/admin_label_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/admin_label_view.rb -------------------------------------------------------------------------------- /app/api/v2/entities/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/api_key.rb -------------------------------------------------------------------------------- /app/api/v2/entities/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/base.rb -------------------------------------------------------------------------------- /app/api/v2/entities/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/comment.rb -------------------------------------------------------------------------------- /app/api/v2/entities/data_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/data_storage.rb -------------------------------------------------------------------------------- /app/api/v2/entities/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/document.rb -------------------------------------------------------------------------------- /app/api/v2/entities/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/label.rb -------------------------------------------------------------------------------- /app/api/v2/entities/level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/level.rb -------------------------------------------------------------------------------- /app/api/v2/entities/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/permission.rb -------------------------------------------------------------------------------- /app/api/v2/entities/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/phone.rb -------------------------------------------------------------------------------- /app/api/v2/entities/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/profile.rb -------------------------------------------------------------------------------- /app/api/v2/entities/restriction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/restriction.rb -------------------------------------------------------------------------------- /app/api/v2/entities/service_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/service_accounts.rb -------------------------------------------------------------------------------- /app/api/v2/entities/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/user.rb -------------------------------------------------------------------------------- /app/api/v2/entities/user_with_full_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/user_with_full_info.rb -------------------------------------------------------------------------------- /app/api/v2/entities/user_with_kyc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/user_with_kyc.rb -------------------------------------------------------------------------------- /app/api/v2/entities/user_with_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/entities/user_with_profile.rb -------------------------------------------------------------------------------- /app/api/v2/exception_handlers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/exception_handlers.rb -------------------------------------------------------------------------------- /app/api/v2/identity/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/identity/base.rb -------------------------------------------------------------------------------- /app/api/v2/identity/general.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/identity/general.rb -------------------------------------------------------------------------------- /app/api/v2/identity/sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/identity/sessions.rb -------------------------------------------------------------------------------- /app/api/v2/identity/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/identity/users.rb -------------------------------------------------------------------------------- /app/api/v2/identity/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/identity/utils.rb -------------------------------------------------------------------------------- /app/api/v2/management/api_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/api_keys.rb -------------------------------------------------------------------------------- /app/api/v2/management/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/base.rb -------------------------------------------------------------------------------- /app/api/v2/management/documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/documents.rb -------------------------------------------------------------------------------- /app/api/v2/management/entities/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/entities/document.rb -------------------------------------------------------------------------------- /app/api/v2/management/entities/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/entities/phone.rb -------------------------------------------------------------------------------- /app/api/v2/management/entities/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/entities/profile.rb -------------------------------------------------------------------------------- /app/api/v2/management/entities/user_with_kyc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/entities/user_with_kyc.rb -------------------------------------------------------------------------------- /app/api/v2/management/entities/user_with_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/entities/user_with_profile.rb -------------------------------------------------------------------------------- /app/api/v2/management/exceptions/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/exceptions/authentication.rb -------------------------------------------------------------------------------- /app/api/v2/management/exceptions/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/exceptions/base.rb -------------------------------------------------------------------------------- /app/api/v2/management/jwt_authentication_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/jwt_authentication_middleware.rb -------------------------------------------------------------------------------- /app/api/v2/management/labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/labels.rb -------------------------------------------------------------------------------- /app/api/v2/management/otp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/otp.rb -------------------------------------------------------------------------------- /app/api/v2/management/phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/phones.rb -------------------------------------------------------------------------------- /app/api/v2/management/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/profiles.rb -------------------------------------------------------------------------------- /app/api/v2/management/service_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/service_accounts.rb -------------------------------------------------------------------------------- /app/api/v2/management/tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/tools.rb -------------------------------------------------------------------------------- /app/api/v2/management/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/management/users.rb -------------------------------------------------------------------------------- /app/api/v2/named_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/named_params.rb -------------------------------------------------------------------------------- /app/api/v2/public/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/public/base.rb -------------------------------------------------------------------------------- /app/api/v2/public/general.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/public/general.rb -------------------------------------------------------------------------------- /app/api/v2/queries/activity_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/queries/activity_filter.rb -------------------------------------------------------------------------------- /app/api/v2/queries/user_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/queries/user_filter.rb -------------------------------------------------------------------------------- /app/api/v2/queries/user_with_label_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/queries/user_with_label_filter.rb -------------------------------------------------------------------------------- /app/api/v2/resource/addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/addresses.rb -------------------------------------------------------------------------------- /app/api/v2/resource/api_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/api_keys.rb -------------------------------------------------------------------------------- /app/api/v2/resource/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/base.rb -------------------------------------------------------------------------------- /app/api/v2/resource/data_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/data_storage.rb -------------------------------------------------------------------------------- /app/api/v2/resource/documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/documents.rb -------------------------------------------------------------------------------- /app/api/v2/resource/labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/labels.rb -------------------------------------------------------------------------------- /app/api/v2/resource/otp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/otp.rb -------------------------------------------------------------------------------- /app/api/v2/resource/phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/phones.rb -------------------------------------------------------------------------------- /app/api/v2/resource/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/profiles.rb -------------------------------------------------------------------------------- /app/api/v2/resource/service_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/service_accounts.rb -------------------------------------------------------------------------------- /app/api/v2/resource/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/users.rb -------------------------------------------------------------------------------- /app/api/v2/resource/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/resource/utils.rb -------------------------------------------------------------------------------- /app/api/v2/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/utils.rb -------------------------------------------------------------------------------- /app/api/v2/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/api/v2/validations.rb -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/authorize_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/controllers/authorize_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/salted_crc32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/helpers/salted_crc32.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/postmaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/mailers/postmaster.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/activity.rb -------------------------------------------------------------------------------- /app/models/admin_ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/admin_ability.rb -------------------------------------------------------------------------------- /app/models/api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/api_key.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/data_is_json_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/concerns/data_is_json_validator.rb -------------------------------------------------------------------------------- /app/models/concerns/encryptable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/concerns/encryptable.rb -------------------------------------------------------------------------------- /app/models/concerns/iso8601_time_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/concerns/iso8601_time_format.rb -------------------------------------------------------------------------------- /app/models/concerns/trusty_agent_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/concerns/trusty_agent_validator.rb -------------------------------------------------------------------------------- /app/models/data_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/data_storage.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/label.rb -------------------------------------------------------------------------------- /app/models/level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/level.rb -------------------------------------------------------------------------------- /app/models/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/permission.rb -------------------------------------------------------------------------------- /app/models/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/phone.rb -------------------------------------------------------------------------------- /app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/profile.rb -------------------------------------------------------------------------------- /app/models/restriction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/restriction.rb -------------------------------------------------------------------------------- /app/models/service_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/service_account.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/services/api_keys_verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/api_keys_verifier.rb -------------------------------------------------------------------------------- /app/services/captcha_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/captcha_service.rb -------------------------------------------------------------------------------- /app/services/encryption_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/encryption_service.rb -------------------------------------------------------------------------------- /app/services/event_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/event_mailer.rb -------------------------------------------------------------------------------- /app/services/kyc_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/kyc_service.rb -------------------------------------------------------------------------------- /app/services/mock_phone_verify_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/mock_phone_verify_service.rb -------------------------------------------------------------------------------- /app/services/password_strength_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/password_strength_checker.rb -------------------------------------------------------------------------------- /app/services/secret_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/secret_storage.rb -------------------------------------------------------------------------------- /app/services/totp_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/totp_service.rb -------------------------------------------------------------------------------- /app/services/twilio_sms_send_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/twilio_sms_send_service.rb -------------------------------------------------------------------------------- /app/services/twilio_verify_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/twilio_verify_service.rb -------------------------------------------------------------------------------- /app/services/uid_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/services/uid_generator.rb -------------------------------------------------------------------------------- /app/uploaders/ali_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/uploaders/ali_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/upload_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/uploaders/upload_uploader.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/postmaster/deposit_accepted.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/deposit_accepted.en.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/email_confirmation.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/email_confirmation.en.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/email_confirmation.ru.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/email_confirmation.ru.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/label.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/label.en.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/new_beneficiary.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/new_beneficiary.en.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/password_reset.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/password_reset.en.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/password_reset.ru.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/password_reset.ru.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/session_create.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/session_create.en.html.erb -------------------------------------------------------------------------------- /app/views/postmaster/withdraw_succeed.en.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/views/postmaster/withdraw_succeed.en.html.erb -------------------------------------------------------------------------------- /app/workers/kyc/kycaid/address_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/workers/kyc/kycaid/address_worker.rb -------------------------------------------------------------------------------- /app/workers/kyc/kycaid/applicant_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/workers/kyc/kycaid/applicant_worker.rb -------------------------------------------------------------------------------- /app/workers/kyc/kycaid/document_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/workers/kyc/kycaid/document_worker.rb -------------------------------------------------------------------------------- /app/workers/kyc/kycaid/verifications_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/app/workers/kyc/kycaid/verifications_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/gendocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/gendocs -------------------------------------------------------------------------------- /bin/init_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/init_config -------------------------------------------------------------------------------- /bin/init_vault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/init_vault -------------------------------------------------------------------------------- /bin/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/install_plugins -------------------------------------------------------------------------------- /bin/link_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/link_config -------------------------------------------------------------------------------- /bin/mailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/mailer -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config.ru -------------------------------------------------------------------------------- /config/abilities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/abilities.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/authz_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/authz_rules.yml -------------------------------------------------------------------------------- /config/backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/backend.yml -------------------------------------------------------------------------------- /config/barong.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/barong.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/cloudflare_ips.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/cloudflare_ips.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/api_pagination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/api_pagination.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/barong.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/barong.rb -------------------------------------------------------------------------------- /config/initializers/barong_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/barong_config.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/document_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/document_types.rb -------------------------------------------------------------------------------- /config/initializers/event_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/event_api.rb -------------------------------------------------------------------------------- /config/initializers/exception_reporting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/exception_reporting.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mgn_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/mgn_api.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/open_uri.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/open_uri.rb -------------------------------------------------------------------------------- /config/initializers/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/phone.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/redis_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/redis_store.rb -------------------------------------------------------------------------------- /config/initializers/sessions_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/sessions_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/trusted_proxies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/trusted_proxies.rb -------------------------------------------------------------------------------- /config/initializers/user_storage_titles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/user_storage_titles.rb -------------------------------------------------------------------------------- /config/initializers/vault.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/vault.rb -------------------------------------------------------------------------------- /config/initializers/versioning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/versioning.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/mailer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/mailer.yml -------------------------------------------------------------------------------- /config/management_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/management_api.yml -------------------------------------------------------------------------------- /config/plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/plugins.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/seeds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/seeds.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/templates/management_api_v1.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/templates/management_api_v1.yml.erb -------------------------------------------------------------------------------- /config/templates/plugins.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/config/templates/plugins.yml.erb -------------------------------------------------------------------------------- /db/migrate/20181101143041_create_all_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20181101143041_create_all_tables.rb -------------------------------------------------------------------------------- /db/migrate/20181115100105_create_activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20181115100105_create_activities.rb -------------------------------------------------------------------------------- /db/migrate/20190108115333_add_referral_id_to_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20190108115333_add_referral_id_to_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20190318133453_create_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20190318133453_create_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20190529114214_changes_in_activities_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20190529114214_changes_in_activities_table.rb -------------------------------------------------------------------------------- /db/migrate/20190813112503_create_restrictions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20190813112503_create_restrictions.rb -------------------------------------------------------------------------------- /db/migrate/20190827080317_add_data_field_to_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20190827080317_add_data_field_to_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20190902032709_add_state_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20190902032709_add_state_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20191122151630_create_data_storages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20191122151630_create_data_storages.rb -------------------------------------------------------------------------------- /db/migrate/20191210090006_add_description_to_labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20191210090006_add_description_to_labels.rb -------------------------------------------------------------------------------- /db/migrate/20200318152130_add_default_state_to_profiles_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200318152130_add_default_state_to_profiles_table.rb -------------------------------------------------------------------------------- /db/migrate/20200429082843_add_code_and_type_in_restrictions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200429082843_add_code_and_type_in_restrictions_table.rb -------------------------------------------------------------------------------- /db/migrate/20200507104423_add_encrypted_secret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200507104423_add_encrypted_secret.rb -------------------------------------------------------------------------------- /db/migrate/20200514123908_add_identificator_to_documents_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200514123908_add_identificator_to_documents_table.rb -------------------------------------------------------------------------------- /db/migrate/20200602075906_add_author_to_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200602075906_add_author_to_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20200609144734_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200609144734_create_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200701115721_add_doc_category_to_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200701115721_add_doc_category_to_documents.rb -------------------------------------------------------------------------------- /db/migrate/20200902125225_make_api_key_kid_unique.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200902125225_make_api_key_kid_unique.rb -------------------------------------------------------------------------------- /db/migrate/20200904153034_add_service_accounts_and_related_changes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200904153034_add_service_accounts_and_related_changes.rb -------------------------------------------------------------------------------- /db/migrate/20200929143711_add_encrypted_values_to_phones_profiles_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20200929143711_add_encrypted_values_to_phones_profiles_documents.rb -------------------------------------------------------------------------------- /db/migrate/20201001112814_change_document_fields_position.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20201001112814_change_document_fields_position.rb -------------------------------------------------------------------------------- /db/migrate/20210218135634_change_owner_id_requirement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20210218135634_change_owner_id_requirement.rb -------------------------------------------------------------------------------- /db/migrate/20210316083841_add_username_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20210316083841_add_username_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20210325133233_add_unique_index_on_labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20210325133233_add_unique_index_on_labels.rb -------------------------------------------------------------------------------- /db/migrate/20210407094208_add_user_ip_country_field_to_activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/migrate/20210407094208_add_user_ip_country_field_to_activities.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/db/structure.sql -------------------------------------------------------------------------------- /docs/api/barong_admin_api_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/api/barong_admin_api_v2.md -------------------------------------------------------------------------------- /docs/api/barong_management_api_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/api/barong_management_api_v2.md -------------------------------------------------------------------------------- /docs/api/barong_user_api_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/api/barong_user_api_v2.md -------------------------------------------------------------------------------- /docs/api/swagger/admin_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/api/swagger/admin_api.json -------------------------------------------------------------------------------- /docs/api/swagger/management_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/api/swagger/management_api.json -------------------------------------------------------------------------------- /docs/api/swagger/user_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/api/swagger/user_api.json -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/development/mailer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/development/mailer.md -------------------------------------------------------------------------------- /docs/general/2fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/2fa.md -------------------------------------------------------------------------------- /docs/general/activities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/activities.md -------------------------------------------------------------------------------- /docs/general/api-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/api-keys.md -------------------------------------------------------------------------------- /docs/general/auth0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/auth0.md -------------------------------------------------------------------------------- /docs/general/captcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/captcha.md -------------------------------------------------------------------------------- /docs/general/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/encryption.md -------------------------------------------------------------------------------- /docs/general/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/errors.md -------------------------------------------------------------------------------- /docs/general/event_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/event_api.md -------------------------------------------------------------------------------- /docs/general/password_hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/password_hashing.md -------------------------------------------------------------------------------- /docs/general/profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/general/profiles.md -------------------------------------------------------------------------------- /docs/images/amqp-mailer-schema.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/amqp-mailer-schema.jpg -------------------------------------------------------------------------------- /docs/images/api-keys-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/api-keys-1.jpeg -------------------------------------------------------------------------------- /docs/images/api-keys-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/api-keys-2.jpeg -------------------------------------------------------------------------------- /docs/images/auth0_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/auth0_dashboard.png -------------------------------------------------------------------------------- /docs/images/auth0_pkce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/auth0_pkce.png -------------------------------------------------------------------------------- /docs/images/auth0_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/auth0_settings.png -------------------------------------------------------------------------------- /docs/images/mailer-retry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/images/mailer-retry.jpg -------------------------------------------------------------------------------- /docs/kycaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/kycaid.md -------------------------------------------------------------------------------- /docs/mailer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/mailer.md -------------------------------------------------------------------------------- /docs/migrations/2_6_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/migrations/2_6_migration.md -------------------------------------------------------------------------------- /docs/migrations/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/migrations/postgresql.md -------------------------------------------------------------------------------- /docs/releases/2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/releases/2.1.0.md -------------------------------------------------------------------------------- /docs/releases/2.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/releases/2.3.0.md -------------------------------------------------------------------------------- /docs/restrictions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/restrictions.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/service_accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/service_accounts.md -------------------------------------------------------------------------------- /docs/tasks/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/tasks/import.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/docs/vault.md -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/barong/activity_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/activity_logger.rb -------------------------------------------------------------------------------- /lib/barong/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/app.rb -------------------------------------------------------------------------------- /lib/barong/auth0/jwt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/auth0/jwt.rb -------------------------------------------------------------------------------- /lib/barong/authorize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/authorize.rb -------------------------------------------------------------------------------- /lib/barong/cors/validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/cors/validations.rb -------------------------------------------------------------------------------- /lib/barong/event_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/event_api.rb -------------------------------------------------------------------------------- /lib/barong/geo_ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/geo_ip.rb -------------------------------------------------------------------------------- /lib/barong/json_log_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/json_log_formatter.rb -------------------------------------------------------------------------------- /lib/barong/jwt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/jwt.rb -------------------------------------------------------------------------------- /lib/barong/keystore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/keystore.rb -------------------------------------------------------------------------------- /lib/barong/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/middleware.rb -------------------------------------------------------------------------------- /lib/barong/middleware/jwt_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/middleware/jwt_authenticator.rb -------------------------------------------------------------------------------- /lib/barong/mock_sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/mock_sms.rb -------------------------------------------------------------------------------- /lib/barong/redis_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/redis_session.rb -------------------------------------------------------------------------------- /lib/barong/seed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/barong/seed.rb -------------------------------------------------------------------------------- /lib/tasks/activities.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/activities.rake -------------------------------------------------------------------------------- /lib/tasks/apply_labels.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/apply_labels.rake -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/docker.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/docker.rake -------------------------------------------------------------------------------- /lib/tasks/export.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/export.rake -------------------------------------------------------------------------------- /lib/tasks/generate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/generate.rake -------------------------------------------------------------------------------- /lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/import.rake -------------------------------------------------------------------------------- /lib/tasks/mailer.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/mailer.rake -------------------------------------------------------------------------------- /lib/tasks/migrate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/migrate.rake -------------------------------------------------------------------------------- /lib/tasks/permissions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/permissions.rake -------------------------------------------------------------------------------- /lib/tasks/rotate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/lib/tasks/rotate.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/benchmark/phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/scripts/benchmark/phones.rb -------------------------------------------------------------------------------- /scripts/benchmark/profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/scripts/benchmark/profiles.rb -------------------------------------------------------------------------------- /spec/api/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/base_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/abilities_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/abilities_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/activities_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/activities_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/api_keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/api_keys_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/levels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/levels_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/metrics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/metrics_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/permissions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/permissions_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/profiles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/profiles_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/restrictions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/restrictions_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/admin/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/admin/users_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/auth/audit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/auth/audit_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/auth/auth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/auth/auth_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/auth/csrf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/auth/csrf_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/auth/rbac_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/auth/rbac_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/auth/restriction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/auth/restriction_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/auth/sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/auth/sessions_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/cors/cors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/cors/cors_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/cors/validations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/cors/validations_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/entities/activities_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/entities/activities_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/entities/labels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/entities/labels_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/entities/user_with_full_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/entities/user_with_full_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/identity/general_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/identity/general_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/identity/sessions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/identity/sessions_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/identity/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/identity/users_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/api_keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/api_keys_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/documents_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/jwt_authentication_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/jwt_authentication_middleware_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/labels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/labels_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/otp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/otp_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/phones_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/phones_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/profiles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/profiles_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/service_accounts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/service_accounts_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/management/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/management/users_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/public/general_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/public/general_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/queries/activity_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/queries/activity_filter_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/addresses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/addresses_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/api_keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/api_keys_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/data_storage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/data_storage_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/documents_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/labels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/labels_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/otp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/otp_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/phones_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/phones_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/profiles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/profiles_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/service_accounts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/service_accounts_spec.rb -------------------------------------------------------------------------------- /spec/api/v2/resource/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/api/v2/resource/users_spec.rb -------------------------------------------------------------------------------- /spec/factories/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/activity.rb -------------------------------------------------------------------------------- /spec/factories/api_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/api_keys.rb -------------------------------------------------------------------------------- /spec/factories/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/document.rb -------------------------------------------------------------------------------- /spec/factories/label.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/label.rb -------------------------------------------------------------------------------- /spec/factories/level.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/level.rb -------------------------------------------------------------------------------- /spec/factories/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/permission.rb -------------------------------------------------------------------------------- /spec/factories/phones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/phones.rb -------------------------------------------------------------------------------- /spec/factories/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/profile.rb -------------------------------------------------------------------------------- /spec/factories/restriction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/restriction.rb -------------------------------------------------------------------------------- /spec/factories/service_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/service_account.rb -------------------------------------------------------------------------------- /spec/factories/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/factories/user.rb -------------------------------------------------------------------------------- /spec/fixtures/files/documents_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/fixtures/files/documents_test.jpg -------------------------------------------------------------------------------- /spec/initializers/data_storage_titles_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/initializers/data_storage_titles_spec.rb -------------------------------------------------------------------------------- /spec/initializers/document_types.spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/initializers/document_types.spec.rb -------------------------------------------------------------------------------- /spec/lib/barong/jwt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/lib/barong/jwt_spec.rb -------------------------------------------------------------------------------- /spec/lib/barong/redis_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/lib/barong/redis_session_spec.rb -------------------------------------------------------------------------------- /spec/lib/barong/seed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/lib/barong/seed_spec.rb -------------------------------------------------------------------------------- /spec/mailers/postmaster_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/mailers/postmaster_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/mailers/previews/mailer_preview.rb -------------------------------------------------------------------------------- /spec/models/ability_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/ability_spec.rb -------------------------------------------------------------------------------- /spec/models/activity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/activity_spec.rb -------------------------------------------------------------------------------- /spec/models/api_key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/api_key_spec.rb -------------------------------------------------------------------------------- /spec/models/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/document_spec.rb -------------------------------------------------------------------------------- /spec/models/label_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/label_spec.rb -------------------------------------------------------------------------------- /spec/models/level_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/level_spec.rb -------------------------------------------------------------------------------- /spec/models/phone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/phone_spec.rb -------------------------------------------------------------------------------- /spec/models/profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/profile_spec.rb -------------------------------------------------------------------------------- /spec/models/restrictions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/restrictions_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/services/encryption_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/services/encryption_service_spec.rb -------------------------------------------------------------------------------- /spec/services/event_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/services/event_mailer_spec.rb -------------------------------------------------------------------------------- /spec/services/kyc_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/services/kyc_service_spec.rb -------------------------------------------------------------------------------- /spec/services/vault_totp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/services/vault_totp_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/api_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/support/api_helpers.rb -------------------------------------------------------------------------------- /spec/support/bearer_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/support/bearer_context.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/geoip_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/support/geoip_context.rb -------------------------------------------------------------------------------- /spec/support/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/support/helper.rb -------------------------------------------------------------------------------- /spec/support/redis_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/support/redis_helper.rb -------------------------------------------------------------------------------- /spec/workers/address_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/workers/address_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/applicant_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/workers/applicant_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/document_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/workers/document_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/verification_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/spec/workers/verification_worker_spec.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openware/barong/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------