├── .dockerignore ├── .env.sample ├── .env.test ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .hound.yml ├── .irbrc ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Dockerfile ├── Dockerfile.dev ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── Vagrantfile ├── app ├── assets │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── README.txt │ │ ├── ajax-loader.gif │ │ ├── alpha.png │ │ ├── avatars │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── female.png │ │ │ ├── male.png │ │ │ ├── sunny-big.png │ │ │ └── sunny.png │ │ ├── bg_diamond.png │ │ ├── bg_divider.png │ │ ├── bg_noise-2.png │ │ ├── bg_noise-5.png │ │ ├── blog │ │ │ ├── ape.jpg │ │ │ ├── bee.jpg │ │ │ ├── butterfly.jpg │ │ │ ├── fly.jpg │ │ │ ├── frog.jpg │ │ │ ├── ladybird.jpg │ │ │ └── water-pump.jpg │ │ ├── customers │ │ │ ├── amazon.jpg │ │ │ ├── bitbucket.png │ │ │ ├── css3.jpg │ │ │ ├── ebay.png │ │ │ ├── github.png │ │ │ ├── google.jpg │ │ │ ├── html5.png │ │ │ ├── jquery.png │ │ │ ├── less.png │ │ │ ├── vodafone.jpg │ │ │ ├── yahoo.jpeg │ │ │ └── youtube.png │ │ ├── demo │ │ │ ├── 64x64.png │ │ │ ├── basic.png │ │ │ ├── demo-smartbig-alert.png │ │ │ ├── demo-smartmedium-alert.png │ │ │ ├── demo-smartsmall-alert.png │ │ │ ├── hero.png │ │ │ ├── image-placeholder-64x64.png │ │ │ ├── iphoneview.png │ │ │ ├── m1.jpg │ │ │ ├── m2.jpg │ │ │ ├── m3.jpg │ │ │ ├── newsletter.png │ │ │ ├── responseimg.png │ │ │ ├── s1.jpg │ │ │ ├── s2.jpg │ │ │ ├── s3.jpg │ │ │ ├── sample.jpg │ │ │ ├── sidebar.png │ │ │ ├── sidebarhero.png │ │ │ ├── site-1.jpg │ │ │ ├── site-2.jpg │ │ │ └── widget-colorpicker.png │ │ ├── dropzone │ │ │ ├── spritemap.png │ │ │ └── spritemap@2x.png │ │ ├── favicon │ │ │ ├── 1favicon.ico │ │ │ ├── favicon.ico │ │ │ └── favicon.png │ │ ├── fcr-default.png │ │ ├── features │ │ │ ├── feature-1.png │ │ │ ├── feature-2.png │ │ │ ├── feature-3.png │ │ │ ├── feature-4.png │ │ │ ├── feature-5-cropped.png │ │ │ └── feature-5.png │ │ ├── flags │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── am.png │ │ │ ├── an.png │ │ │ ├── ao.png │ │ │ ├── ar.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj (1).png │ │ │ ├── bj.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bv.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── cc.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── cn.png │ │ │ ├── co (1).png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cs.png │ │ │ ├── cu.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ ├── ru.png │ │ │ ├── tr.png │ │ │ └── us.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── gradient │ │ │ └── login.png │ │ ├── hue.png │ │ ├── invoice │ │ │ ├── americanexpress.png │ │ │ ├── license.txt │ │ │ ├── mastercard.png │ │ │ ├── paypal.png │ │ │ └── visa.png │ │ ├── jqueryui │ │ │ ├── ui-bg_flat_0_999999_40x100.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_428bca_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_999999_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_f0ad4e_256x240.png │ │ │ ├── ui-icons_f6cf3b_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── loading.gif │ │ ├── logo-blacknwhite.png │ │ ├── logo-o.png │ │ ├── logo.png │ │ ├── misc │ │ │ ├── map.png │ │ │ └── purple.png │ │ ├── mybg.png │ │ ├── openvpn.jpg │ │ ├── pattern │ │ │ ├── divider.jpg │ │ │ ├── graphy.png │ │ │ ├── lightpaperfibers.png │ │ │ ├── movable.png │ │ │ ├── nistri.png │ │ │ ├── overlay-pattern.png │ │ │ ├── pattern.png │ │ │ ├── purty_wood.png │ │ │ ├── retina_wood.png │ │ │ ├── sneaker_mesh_fabric.png │ │ │ └── tileable_wood_texture.png │ │ ├── paxum_usd_logo.png │ │ ├── pay_system_logos │ │ │ ├── cc_logo.png │ │ │ ├── paypal_logo.png │ │ │ ├── wmr_logo.png │ │ │ ├── wmz_logo.png │ │ │ └── yandex_logo.png │ │ ├── publishing-images │ │ │ ├── multiple-layout.png │ │ │ └── screenshot.png │ │ ├── rails.png │ │ ├── redpass_usd_logo.png │ │ ├── ribbon.png │ │ ├── saturation.png │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ ├── slides │ │ │ ├── slide1.png │ │ │ └── slide2.png │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── superbox │ │ │ ├── superbox-full-1.jpg │ │ │ ├── superbox-full-10.jpg │ │ │ ├── superbox-full-11.jpg │ │ │ ├── superbox-full-12.jpg │ │ │ ├── superbox-full-13.jpg │ │ │ ├── superbox-full-14.jpg │ │ │ ├── superbox-full-15.jpg │ │ │ ├── superbox-full-16.jpg │ │ │ ├── superbox-full-17.jpg │ │ │ ├── superbox-full-18.jpg │ │ │ ├── superbox-full-19.jpg │ │ │ ├── superbox-full-2.jpg │ │ │ ├── superbox-full-20.jpg │ │ │ ├── superbox-full-21.jpg │ │ │ ├── superbox-full-22.jpg │ │ │ ├── superbox-full-23.jpg │ │ │ ├── superbox-full-24.jpg │ │ │ ├── superbox-full-3.jpg │ │ │ ├── superbox-full-4.jpg │ │ │ ├── superbox-full-5.jpg │ │ │ ├── superbox-full-6.jpg │ │ │ ├── superbox-full-7.jpg │ │ │ ├── superbox-full-8.jpg │ │ │ ├── superbox-full-9.jpg │ │ │ ├── superbox-thumb-1.jpg │ │ │ ├── superbox-thumb-10.jpg │ │ │ ├── superbox-thumb-11.jpg │ │ │ ├── superbox-thumb-12.jpg │ │ │ ├── superbox-thumb-13.jpg │ │ │ ├── superbox-thumb-14.jpg │ │ │ ├── superbox-thumb-15.jpg │ │ │ ├── superbox-thumb-16.jpg │ │ │ ├── superbox-thumb-17.jpg │ │ │ ├── superbox-thumb-18.jpg │ │ │ ├── superbox-thumb-19.jpg │ │ │ ├── superbox-thumb-2.jpg │ │ │ ├── superbox-thumb-20.jpg │ │ │ ├── superbox-thumb-21.jpg │ │ │ ├── superbox-thumb-22.jpg │ │ │ ├── superbox-thumb-23.jpg │ │ │ ├── superbox-thumb-24.jpg │ │ │ ├── superbox-thumb-3.jpg │ │ │ ├── superbox-thumb-4.jpg │ │ │ ├── superbox-thumb-5.jpg │ │ │ ├── superbox-thumb-6.jpg │ │ │ ├── superbox-thumb-7.jpg │ │ │ ├── superbox-thumb-8.jpg │ │ │ └── superbox-thumb-9.jpg │ │ └── team │ │ │ ├── adele.jpg │ │ │ ├── bono.jpg │ │ │ ├── deniro.jpg │ │ │ ├── jimi.jpg │ │ │ ├── jobs.jpg │ │ │ ├── jolie.jpg │ │ │ ├── obama.jpg │ │ │ └── women1.jpg │ ├── javascripts │ │ ├── admin.js.coffee │ │ ├── application.js.coffee │ │ ├── main.js.coffee │ │ ├── options.js.coffee │ │ └── theme │ │ │ ├── bootstrap-affix.js │ │ │ ├── bootstrap-alert.js │ │ │ ├── bootstrap-button.js │ │ │ ├── bootstrap-carousel.js │ │ │ ├── bootstrap-collapse.js │ │ │ ├── bootstrap-dropdown.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── bootstrap-popover.js │ │ │ ├── bootstrap-scrollspy.js │ │ │ ├── bootstrap-tab.js │ │ │ ├── bootstrap-tooltip.js │ │ │ ├── bootstrap-transition.js │ │ │ ├── bootstrap-typeahead.js │ │ │ ├── html5shim.js │ │ │ ├── jquery.flexslider-min.js │ │ │ ├── jquery.quicksand.js │ │ │ └── script.js │ └── stylesheets │ │ ├── admin.scss │ │ ├── application.scss │ │ ├── main-admin.scss │ │ ├── main.scss │ │ ├── shared.css.scss │ │ └── theme │ │ ├── bootstrap.css.scss │ │ ├── custom-colour.css │ │ ├── flexslider.css │ │ ├── responsive.css │ │ └── theme-style.css ├── cells │ └── web │ │ ├── admin │ │ └── change_locale_link_cell.rb │ │ └── base_cell.rb ├── controllers │ ├── admin │ │ ├── base_controller.rb │ │ ├── change_languages_controller.rb │ │ ├── connections_controller.rb │ │ ├── home_controller.rb │ │ ├── options_controller.rb │ │ ├── pay_systems_controller.rb │ │ ├── plans_controller.rb │ │ ├── profiles_controller.rb │ │ ├── promos_controller.rb │ │ ├── referrers_controller.rb │ │ ├── servers_controller.rb │ │ ├── traffic_reports_controller.rb │ │ ├── transactions_controller.rb │ │ └── users_controller.rb │ ├── admins │ │ └── sessions_controller.rb │ ├── api │ │ ├── authentication_controller.rb │ │ ├── base_controller.rb │ │ ├── connection_controller.rb │ │ └── servers_controller.rb │ ├── application_controller.rb │ ├── billing │ │ ├── base_controller.rb │ │ ├── home_controller.rb │ │ ├── merchant_controller.rb │ │ ├── options_controller.rb │ │ ├── payments_controller.rb │ │ ├── paypal_controller.rb │ │ ├── promotions_controller.rb │ │ ├── referrers_controller.rb │ │ ├── robokassa_controller.rb │ │ ├── servers_controller.rb │ │ └── webmoney_controller.rb │ ├── concerns │ │ └── .keep │ ├── main_controller.rb │ ├── referrers_controller.rb │ └── users │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ └── sessions_controller.rb ├── decorators │ ├── admin │ │ └── options_decorator.rb │ ├── option_attribute_decorator.rb │ ├── pay_system_decorator.rb │ ├── promo_decorator.rb │ ├── transaction_decorator.rb │ └── user_decorator.rb ├── exceptions │ └── api_exception.rb ├── helpers │ ├── admin_helper.rb │ ├── application_helper.rb │ ├── main_helper.rb │ ├── options_helper.rb │ ├── promos_helper.rb │ └── servers_helper.rb ├── inputs │ └── datepicker_input.rb ├── mailers │ ├── user_connection_config_mailer.rb │ └── user_mailer.rb ├── models │ ├── ability.rb │ ├── admin.rb │ ├── authenticator.rb │ ├── concerns │ │ ├── .keep │ │ └── last_days_filterable.rb │ ├── connection.rb │ ├── connections │ │ ├── connect.rb │ │ └── disconnect.rb │ ├── connector.rb │ ├── option.rb │ ├── options │ │ ├── attributes │ │ │ └── proxy.rb │ │ └── hooks │ │ │ └── proxy.rb │ ├── pay_system.rb │ ├── payment.rb │ ├── plan.rb │ ├── plan_has_server.rb │ ├── promo.rb │ ├── promoter.rb │ ├── promoters │ │ └── discount_promoter.rb │ ├── promoters_repository.rb │ ├── promotion.rb │ ├── proxy.rb │ ├── proxy │ │ ├── connect.rb │ │ └── node.rb │ ├── referrer.rb │ ├── referrer │ │ ├── account.rb │ │ └── reward.rb │ ├── server.rb │ ├── server │ │ └── signature.rb │ ├── server_config.rb │ ├── test_period.rb │ ├── traffic_report.rb │ ├── traffic_reports │ │ ├── date_traffic_report.rb │ │ ├── server_traffic_report.rb │ │ └── user_traffic_report.rb │ ├── transaction.rb │ ├── user.rb │ ├── user_option.rb │ ├── withdrawal.rb │ └── withdrawal_prolongation.rb ├── operations │ └── ops │ │ └── admin │ │ └── user │ │ ├── base.rb │ │ └── create.rb ├── ransackers │ ├── base_ransacker.rb │ └── never_paid_users_ransacker.rb ├── serializers │ ├── admin │ │ └── users_serializer.rb │ └── api │ │ ├── connect_serializer.rb │ │ ├── connection_serializer.rb │ │ └── disconnect_serializer.rb ├── services │ ├── dto │ │ ├── admin │ │ │ ├── dashboard.rb │ │ │ ├── discrete_base.rb │ │ │ ├── discrete_customers_registrations.rb │ │ │ ├── discrete_payments.rb │ │ │ └── discrete_traffic.rb │ │ └── base.rb │ ├── forced_disconnect.rb │ ├── newsletter_manager.rb │ ├── option │ │ ├── activation_price_calc.rb │ │ ├── activator.rb │ │ └── deactivator.rb │ ├── proxy │ │ ├── fetchers │ │ │ ├── base.rb │ │ │ ├── free_proxy_list_net │ │ │ │ ├── row_parser.rb │ │ │ │ └── web_parser.rb │ │ │ └── free_proxy_lists │ │ │ │ ├── row_parser.rb │ │ │ │ └── web_parser.rb │ │ ├── proxy_dto.rb │ │ ├── rater.rb │ │ ├── repository.rb │ │ └── updater.rb │ ├── referrer │ │ ├── reward_calculator.rb │ │ └── rewarder.rb │ ├── server_config_builder.rb │ ├── unpaid_users_notificator.rb │ ├── withdrawal_amount_calculator.rb │ └── withdrawer.rb ├── uploaders │ └── config_uploader.rb ├── views │ ├── admin │ │ ├── connections │ │ │ ├── _filter.html.slim │ │ │ ├── active.html.slim │ │ │ ├── index.html.slim │ │ │ └── show.html.slim │ │ ├── home │ │ │ └── index.html.slim │ │ ├── options │ │ │ ├── _form.html.slim │ │ │ ├── edit.html.slim │ │ │ ├── index.html.slim │ │ │ └── new.html.slim │ │ ├── pay_systems │ │ │ ├── _form.html.slim │ │ │ ├── edit.html.slim │ │ │ ├── index.html.slim │ │ │ ├── new.html.slim │ │ │ └── show.html.slim │ │ ├── plans │ │ │ ├── _form.html.slim │ │ │ ├── edit.html.slim │ │ │ ├── index.html.slim │ │ │ └── new.html.slim │ │ ├── profiles │ │ │ └── edit.html.slim │ │ ├── promos │ │ │ ├── _form.html.slim │ │ │ ├── edit.html.slim │ │ │ ├── index.html.slim │ │ │ └── new.html.slim │ │ ├── referrers │ │ │ ├── _referrals.html.slim │ │ │ └── index.html.slim │ │ ├── servers │ │ │ ├── _form.html.slim │ │ │ ├── edit.html.slim │ │ │ ├── index.html.slim │ │ │ ├── new.html.slim │ │ │ └── show.html.slim │ │ ├── shared │ │ │ ├── _menu.html.slim │ │ │ └── _paginate.html.slim │ │ ├── traffic_reports │ │ │ ├── _filter.html.slim │ │ │ ├── _submenu.html.slim │ │ │ ├── date.html.slim │ │ │ ├── index.html.slim │ │ │ ├── servers.html.slim │ │ │ └── users.html.slim │ │ ├── transactions │ │ │ ├── index.html.slim │ │ │ ├── payments.html.slim │ │ │ └── withdrawals.html.slim │ │ └── users │ │ │ ├── _filter.html.slim │ │ │ ├── _payment.html.slim │ │ │ ├── _prolongation.html.slim │ │ │ ├── _submenu.html.slim │ │ │ ├── _table.html.slim │ │ │ ├── _test_period.html.slim │ │ │ ├── edit.html.slim │ │ │ ├── index.html.slim │ │ │ ├── new.html.slim │ │ │ ├── payers.html.slim │ │ │ ├── show.html.slim │ │ │ └── this_month_payers.html.slim │ ├── admins │ │ ├── confirmations │ │ │ └── new.html.erb │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.erb │ │ │ ├── reset_password_instructions.html.erb │ │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── registrations │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ ├── sessions │ │ │ └── new.html.slim │ │ ├── shared │ │ │ └── _links.erb │ │ └── unlocks │ │ │ └── new.html.erb │ ├── application │ │ └── _notifications.html.slim │ ├── billing │ │ ├── home │ │ │ ├── _account_info.html.slim │ │ │ ├── _current_connection.html.slim │ │ │ ├── _last_transactions.html.slim │ │ │ └── index.html.slim │ │ ├── options │ │ │ ├── _subscribed_options.html.slim │ │ │ ├── _unsubscribed_options.html.slim │ │ │ └── index.html.slim │ │ ├── payments │ │ │ ├── forms │ │ │ │ ├── _cc.html.slim │ │ │ │ ├── _paypal.html.erb │ │ │ │ ├── _wmr.html.slim │ │ │ │ ├── _wmz.html.slim │ │ │ │ └── _yandex.html.slim │ │ │ ├── index.html.slim │ │ │ ├── merchant.html.slim │ │ │ └── new.html.slim │ │ ├── referrers │ │ │ ├── _operations.html.slim │ │ │ ├── _referrals.html.slim │ │ │ └── index.html.slim │ │ └── servers │ │ │ └── index.html.slim │ ├── kaminari │ │ ├── _first_page.html.erb │ │ ├── _gap.html.erb │ │ ├── _last_page.html.erb │ │ ├── _next_page.html.erb │ │ ├── _page.html.erb │ │ ├── _paginator.html.erb │ │ └── _prev_page.html.erb │ ├── layouts │ │ ├── admin.html.slim │ │ ├── application.html.slim │ │ ├── billing.html.slim │ │ └── blank.html.slim │ ├── mailers │ │ ├── _signature.html.slim │ │ ├── user_connection_config_mailer │ │ │ └── notify.html.slim │ │ └── user_mailer │ │ │ ├── balance_withdrawal.html.slim │ │ │ ├── could_not_withdraw_funds.html.slim │ │ │ ├── funds_recieved.html.slim │ │ │ ├── test_period_enabled.html.slim │ │ │ └── unpaid_user_notification.html.slim │ ├── main │ │ ├── auth.html.slim │ │ └── index.html.slim │ ├── shared │ │ ├── _footer.html.slim │ │ ├── _rollbar_js.html.erb │ │ ├── _yandex_metrika.html.erb │ │ └── _zendesk.html.erb │ └── users │ │ ├── confirmations │ │ └── new.html.erb │ │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ │ ├── passwords │ │ ├── edit.html.slim │ │ └── new.html.slim │ │ ├── registrations │ │ ├── _promo.html.slim │ │ ├── edit.html.slim │ │ └── new.html.slim │ │ ├── sessions │ │ └── new.html.slim │ │ ├── shared │ │ └── _links.erb │ │ └── unlocks │ │ └── new.html.erb └── workers │ ├── add_user_to_newsletter_worker.rb │ ├── can_not_withdraw_notification_worker.rb │ ├── create_user_mail_worker.rb │ ├── decrease_balance_mail_worker.rb │ ├── increase_balance_mail_worker.rb │ ├── refresh_proxy_list_worker.rb │ ├── unpaid_user_notification_worker.rb │ ├── update_courses_worker.rb │ └── withdrawals_worker.rb ├── bin ├── build-image ├── bundle ├── cop ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── clock.rb ├── countries.json ├── database.yml.sample ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── i18n-tasks.yml ├── initializers │ ├── active_merchant.rb │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── rails_config.rb │ ├── rollbar.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── show_for.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ └── wrap_parameters.rb ├── locales │ ├── admin │ │ ├── en.yml │ │ └── ru.yml │ ├── billing │ │ ├── en.yml │ │ └── ru.yml │ ├── devise.en.yml │ ├── devise.ru.yml │ ├── en.yml │ ├── kaminari.en.yml │ ├── kaminari.ru.yml │ ├── ru.yml │ ├── show_for.en.yml │ ├── show_for.ru.yml │ ├── simple_form.en.yml │ ├── simple_form.ru.yml │ └── site │ │ ├── en.yml │ │ └── ru.yml ├── newrelic.yml ├── routes.rb ├── sample.server.ovpn.erb ├── settings.yml └── settings │ ├── development.yml │ ├── production.yml │ └── test.yml ├── db ├── migrate │ ├── 20130409190444_create_posts.rb │ ├── 20130421110154_devise_create_users.rb │ ├── 20130421110911_create_admins.rb │ ├── 20130501081828_add_fields_to_user.rb │ ├── 20130501083417_create_plans.rb │ ├── 20130504105921_create_payments.rb │ ├── 20130504144707_create_pay_systems.rb │ ├── 20130504150703_add_description_to_pay_system.rb │ ├── 20130505183444_create_withdrawals.rb │ ├── 20130810125453_create_servers.rb │ ├── 20130925101441_add_vpn_login_and_vpn_password_to_user.rb │ ├── 20131005133458_create_connections.rb │ ├── 20131013140201_add_state_to_user.rb │ ├── 20140105134117_add_special_and_disabled_to_plan.rb │ ├── 20140112113325_create_plan_has_servers.rb │ ├── 20140112123216_remove_plan_id_from_server.rb │ ├── 20140112180259_add_tunnelblick_bundle_and_ios_bundle_and_linux_bundle_to_server.rb │ ├── 20140116192804_add_cant_withdraw_counter_to_user.rb │ ├── 20140125084325_replace_configs_by_one_universal.rb │ ├── 20140202164317_create_promos.rb │ ├── 20140202164614_create_promotions.rb │ ├── 20140202175203_add_attributes_to_promo.rb │ ├── 20140203184711_add_state_to_promo.rb │ ├── 20140207114415_add_promo_id_user_id_uniqueness_index_to_promo.rb │ ├── 20140227113644_add_state_to_pay_system.rb │ ├── 20140301125212_add_currency_to_pay_system.rb │ ├── 20140301130258_add_usd_amount_to_payment.rb │ ├── 20140506135933_create_withdrawal_prolongations.rb │ ├── 20140507085918_add_manual_payment_to_payment.rb │ ├── 20140518132954_create_options.rb │ ├── 20140518133314_create_plan_option_table.rb │ ├── 20140518134712_add_state_to_option.rb │ ├── 20140525091015_add_option_prices_to_plan.rb │ ├── 20140525103921_create_options_users.rb │ ├── 20140727094748_add_reflink_to_user.rb │ ├── 20140728204118_add_referrer_id_to_user.rb │ ├── 20140801123341_create_referrer_rewards.rb │ ├── 20140805112916_generate_reflink_to_old_users.rb │ ├── 20140817131003_create_proxy_nodes.rb │ ├── 20140819160419_remove_options_users_table.rb │ ├── 20140819160716_create_user_options.rb │ ├── 20140823162252_create_proxy_connects.rb │ ├── 20140823164144_add_option_attributes_to_connect.rb │ ├── 20150104180714_add_state_to_user_option.rb │ ├── 20150109161843_add_protocol_to_server.rb │ ├── 20150109164839_add_port_to_server.rb │ ├── 20150110141211_add_country_code_to_server.rb │ ├── 20150125133216_add_test_period_enabled_to_user.rb │ ├── 20150125141501_add_test_period_started_at_to_user.rb │ ├── 20181014150549_add_default_user.rb │ └── 20190122184018_add_pki_to_server.rb ├── schema.rb ├── seeds.rb └── seeds │ ├── 01_options.rb │ ├── 02_plans.rb │ ├── 03_pay_systems.rb │ ├── 04_default_user.rb │ ├── 05_default_user_referrals.rb │ ├── 06_admin.rb │ ├── 07_servers.rb │ └── 08_default_user_connects.rb ├── docker-compose.development.yml ├── lib ├── assets │ └── .keep ├── bytes_converter.rb ├── currencies │ ├── course.rb │ └── course_converter.rb ├── exceptions │ ├── admin_access_denied_exception.rb │ ├── api_exception.rb │ ├── billing_exception.rb │ ├── dto_exception.rb │ ├── not_implemented_exception.rb │ ├── smartvpn_exception.rb │ ├── unauthorized_exception.rb │ └── withdrawer_exception.rb ├── random_string.rb ├── signer.rb ├── tasks │ ├── .keep │ ├── assets.rake │ └── seed_initial_data.rake └── templates │ └── erb │ └── scaffold │ ├── _form.html.erb │ └── show.html.erb ├── public ├── 404.html ├── 500.html ├── css │ ├── bootstrap.css │ ├── colour-blue.css │ ├── colour-red.css │ ├── custom-colour.css │ ├── custom-style.css │ ├── flexslider.css │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── responsive.css │ └── theme-style.css ├── img │ ├── README.txt │ ├── anonym.jpg │ ├── bg_diamond.png │ ├── bg_divider.png │ ├── bg_noise-2.png │ ├── bg_noise-5.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── logo.jpg │ ├── osi.jpg │ ├── security.jpg │ ├── sorm.jpg │ ├── t-logo.png │ ├── vpn_tunnel.jpg │ ├── wm-cert.png │ └── wm-logo.png └── index.html ├── spec ├── cells │ └── web │ │ └── admin │ │ └── change_locale_link_cell_spec.rb ├── config │ └── clock_spec.rb ├── controllers │ ├── admin │ │ ├── change_languages_controller_spec.rb │ │ ├── connections_controller_spec.rb │ │ ├── options_controller_spec.rb │ │ ├── pay_systems_controller_spec.rb │ │ ├── plans_controller_spec.rb │ │ ├── profiles_controller_spec.rb │ │ ├── promos_controller_spec.rb │ │ ├── referrers_controller_spec.rb │ │ ├── servers_controller_spec.rb │ │ ├── traffic_reports_controller_spec.rb │ │ ├── transactions_controller_spec.rb │ │ └── users_controller_spec.rb │ ├── api │ │ ├── authentication_controller_spec.rb │ │ ├── connection_controller_spec.rb │ │ └── servers_controller_spec.rb │ ├── application_controller_spec.rb │ ├── billing │ │ ├── options_controller_spec.rb │ │ ├── payments_controller_spec.rb │ │ ├── paypal_controller_spec.rb │ │ ├── promotions_controller_spec.rb │ │ ├── referrers_controller_spec.rb │ │ ├── robokassa_controller_spec.rb │ │ ├── servers_controller_spec.rb │ │ └── webmoney_controller_spec.rb │ ├── referrers_controller_spec.rb │ └── users │ │ └── registrations_controller_spec.rb ├── decorators │ ├── admin │ │ └── options_decorator_spec.rb │ ├── option_attribute_decorator_spec.rb │ ├── pay_system_decorator_spec.rb │ ├── promo_decorator_spec.rb │ ├── transaction_decorator_spec.rb │ └── user_decorator_spec.rb ├── factories.rb ├── features │ ├── admin │ │ ├── plans │ │ │ ├── plans_option_prices_spec.rb │ │ │ └── update_plan_servers_spec.rb │ │ ├── referrers │ │ │ └── referrals_list_toggle_spec.rb │ │ ├── servers │ │ │ └── update_server_plans_spec.rb │ │ └── users │ │ │ ├── manual_payment_spec.rb │ │ │ ├── user_profile_page_spec.rb │ │ │ └── withdrawal_prolongation_spec.rb │ └── billing │ │ ├── discount_promotion_applying_spec.rb │ │ ├── options_page_spec.rb │ │ ├── payments_page_spec.rb │ │ ├── referrers_page_spec.rb │ │ ├── servers_page_spec.rb │ │ ├── settings_page_spec.rb │ │ ├── test_period_at_user_dashboard_spec.rb │ │ ├── user_password_reset_spec.rb │ │ ├── user_sign_in_spec.rb │ │ └── user_sign_up_spec.rb ├── helpers │ ├── admin_helper_spec.rb │ └── application_helper_spec.rb ├── i18n_spec.rb ├── lib │ ├── bytes_converter_spec.rb │ ├── currencies │ │ ├── course_converter_spec.rb │ │ └── course_spec.rb │ ├── random_string_spec.rb │ └── signer_spec.rb ├── mailers │ └── user_connection_config_mailer_spec.rb ├── models │ ├── authenticator_spec.rb │ ├── connect_spec.rb │ ├── connection_spec.rb │ ├── connector_spec.rb │ ├── disconnect_spec.rb │ ├── option_spec.rb │ ├── options │ │ └── hooks │ │ │ └── proxy_spec.rb │ ├── pay_system_spec.rb │ ├── payment_spec.rb │ ├── plan_has_server_spec.rb │ ├── plan_spec.rb │ ├── promo_spec.rb │ ├── promoters │ │ └── discount_promoter_spec.rb │ ├── promoters_repository_spec.rb │ ├── promotion_spec.rb │ ├── proxy │ │ ├── connect_spec.rb │ │ └── node_spec.rb │ ├── referrer │ │ ├── account_spec.rb │ │ └── reward_spec.rb │ ├── server │ │ └── signature_spec.rb │ ├── server_config_spec.rb │ ├── server_spec.rb │ ├── test_period_spec.rb │ ├── traffic_report_spec.rb │ ├── traffic_reports │ │ ├── date_traffic_report_spec.rb │ │ ├── server_traffic_report_spec.rb │ │ └── user_traffic_report_spec.rb │ ├── transaction_spec.rb │ ├── user_option_spec.rb │ ├── user_spec.rb │ ├── withdrawal_prolongation_spec.rb │ └── withdrawal_spec.rb ├── operations │ └── ops │ │ └── admin │ │ └── user │ │ ├── base_spec.rb │ │ └── create_spec.rb ├── rails_helper.rb ├── serializers │ ├── admin │ │ └── users_serializer_spec.rb │ └── api │ │ └── connection_serializer_spec.rb ├── services │ ├── dto │ │ └── admin │ │ │ ├── dashboard_spec.rb │ │ │ └── discrete_base_spec.rb │ ├── forced_disconnect_spec.rb │ ├── newsletter_manager_spec.rb │ ├── option │ │ ├── activation_price_calc_spec.rb │ │ ├── activator_spec.rb │ │ └── deactivator_spec.rb │ ├── proxy │ │ ├── fetchers │ │ │ └── base_spec.rb │ │ ├── rater_spec.rb │ │ ├── repository_spec.rb │ │ └── updater_spec.rb │ ├── referrer │ │ ├── reward_calculator_spec.rb │ │ └── rewarder_spec.rb │ ├── server_config_builder_spec.rb │ ├── unpaid_users_notificator_spec.rb │ ├── withdrawal_amount_calculator_spec.rb │ └── withdrawer_spec.rb ├── shared_examples │ ├── admin_controller_access_spec_shared.rb │ ├── api_call_controller_validation_shared.rb │ ├── dashboard_total_statistics_shared.rb │ ├── has_success_and_fail_responders_shared.rb │ ├── last_days_filterable_shared.rb │ ├── payment_submit_spec_shared.rb │ └── validates_paysystem_enabled_shared.rb ├── spec_helper.rb ├── support │ ├── capybara_helper.rb │ ├── controller_macros.rb │ ├── json_helpers.rb │ └── matchers │ │ └── json_matchers.rb └── workers │ ├── create_user_mail_worker_spec.rb │ ├── refresh_proxy_list_worker_spec.rb │ ├── update_cources_worker_spec.rb │ └── withdrawals_worker_spec.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.env.sample -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.env.test -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.hound.yml -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.irbrc -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | /*--profile*/ 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/assets/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/README.txt -------------------------------------------------------------------------------- /app/assets/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/ajax-loader.gif -------------------------------------------------------------------------------- /app/assets/images/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/alpha.png -------------------------------------------------------------------------------- /app/assets/images/avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/1.png -------------------------------------------------------------------------------- /app/assets/images/avatars/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/2.png -------------------------------------------------------------------------------- /app/assets/images/avatars/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/3.png -------------------------------------------------------------------------------- /app/assets/images/avatars/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/4.png -------------------------------------------------------------------------------- /app/assets/images/avatars/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/5.png -------------------------------------------------------------------------------- /app/assets/images/avatars/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/6.png -------------------------------------------------------------------------------- /app/assets/images/avatars/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/female.png -------------------------------------------------------------------------------- /app/assets/images/avatars/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/male.png -------------------------------------------------------------------------------- /app/assets/images/avatars/sunny-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/sunny-big.png -------------------------------------------------------------------------------- /app/assets/images/avatars/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/avatars/sunny.png -------------------------------------------------------------------------------- /app/assets/images/bg_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/bg_diamond.png -------------------------------------------------------------------------------- /app/assets/images/bg_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/bg_divider.png -------------------------------------------------------------------------------- /app/assets/images/bg_noise-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/bg_noise-2.png -------------------------------------------------------------------------------- /app/assets/images/bg_noise-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/bg_noise-5.png -------------------------------------------------------------------------------- /app/assets/images/blog/ape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/ape.jpg -------------------------------------------------------------------------------- /app/assets/images/blog/bee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/bee.jpg -------------------------------------------------------------------------------- /app/assets/images/blog/butterfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/butterfly.jpg -------------------------------------------------------------------------------- /app/assets/images/blog/fly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/fly.jpg -------------------------------------------------------------------------------- /app/assets/images/blog/frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/frog.jpg -------------------------------------------------------------------------------- /app/assets/images/blog/ladybird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/ladybird.jpg -------------------------------------------------------------------------------- /app/assets/images/blog/water-pump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/blog/water-pump.jpg -------------------------------------------------------------------------------- /app/assets/images/customers/amazon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/amazon.jpg -------------------------------------------------------------------------------- /app/assets/images/customers/bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/bitbucket.png -------------------------------------------------------------------------------- /app/assets/images/customers/css3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/css3.jpg -------------------------------------------------------------------------------- /app/assets/images/customers/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/ebay.png -------------------------------------------------------------------------------- /app/assets/images/customers/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/github.png -------------------------------------------------------------------------------- /app/assets/images/customers/google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/google.jpg -------------------------------------------------------------------------------- /app/assets/images/customers/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/html5.png -------------------------------------------------------------------------------- /app/assets/images/customers/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/jquery.png -------------------------------------------------------------------------------- /app/assets/images/customers/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/less.png -------------------------------------------------------------------------------- /app/assets/images/customers/vodafone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/vodafone.jpg -------------------------------------------------------------------------------- /app/assets/images/customers/yahoo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/yahoo.jpeg -------------------------------------------------------------------------------- /app/assets/images/customers/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/customers/youtube.png -------------------------------------------------------------------------------- /app/assets/images/demo/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/64x64.png -------------------------------------------------------------------------------- /app/assets/images/demo/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/basic.png -------------------------------------------------------------------------------- /app/assets/images/demo/demo-smartbig-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/demo-smartbig-alert.png -------------------------------------------------------------------------------- /app/assets/images/demo/demo-smartmedium-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/demo-smartmedium-alert.png -------------------------------------------------------------------------------- /app/assets/images/demo/demo-smartsmall-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/demo-smartsmall-alert.png -------------------------------------------------------------------------------- /app/assets/images/demo/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/hero.png -------------------------------------------------------------------------------- /app/assets/images/demo/image-placeholder-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/image-placeholder-64x64.png -------------------------------------------------------------------------------- /app/assets/images/demo/iphoneview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/iphoneview.png -------------------------------------------------------------------------------- /app/assets/images/demo/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/m1.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/m2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/m2.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/m3.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/newsletter.png -------------------------------------------------------------------------------- /app/assets/images/demo/responseimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/responseimg.png -------------------------------------------------------------------------------- /app/assets/images/demo/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/s1.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/s2.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/s3.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/sample.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/sidebar.png -------------------------------------------------------------------------------- /app/assets/images/demo/sidebarhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/sidebarhero.png -------------------------------------------------------------------------------- /app/assets/images/demo/site-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/site-1.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/site-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/site-2.jpg -------------------------------------------------------------------------------- /app/assets/images/demo/widget-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/demo/widget-colorpicker.png -------------------------------------------------------------------------------- /app/assets/images/dropzone/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/dropzone/spritemap.png -------------------------------------------------------------------------------- /app/assets/images/dropzone/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/dropzone/spritemap@2x.png -------------------------------------------------------------------------------- /app/assets/images/favicon/1favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/favicon/1favicon.ico -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/favicon/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/favicon/favicon.png -------------------------------------------------------------------------------- /app/assets/images/fcr-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/fcr-default.png -------------------------------------------------------------------------------- /app/assets/images/features/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/features/feature-1.png -------------------------------------------------------------------------------- /app/assets/images/features/feature-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/features/feature-2.png -------------------------------------------------------------------------------- /app/assets/images/features/feature-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/features/feature-3.png -------------------------------------------------------------------------------- /app/assets/images/features/feature-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/features/feature-4.png -------------------------------------------------------------------------------- /app/assets/images/features/feature-5-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/features/feature-5-cropped.png -------------------------------------------------------------------------------- /app/assets/images/features/feature-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/features/feature-5.png -------------------------------------------------------------------------------- /app/assets/images/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ad.png -------------------------------------------------------------------------------- /app/assets/images/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ae.png -------------------------------------------------------------------------------- /app/assets/images/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/af.png -------------------------------------------------------------------------------- /app/assets/images/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ag.png -------------------------------------------------------------------------------- /app/assets/images/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ai.png -------------------------------------------------------------------------------- /app/assets/images/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/am.png -------------------------------------------------------------------------------- /app/assets/images/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/an.png -------------------------------------------------------------------------------- /app/assets/images/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ao.png -------------------------------------------------------------------------------- /app/assets/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ar.png -------------------------------------------------------------------------------- /app/assets/images/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/au.png -------------------------------------------------------------------------------- /app/assets/images/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/aw.png -------------------------------------------------------------------------------- /app/assets/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/az.png -------------------------------------------------------------------------------- /app/assets/images/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ba.png -------------------------------------------------------------------------------- /app/assets/images/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bb.png -------------------------------------------------------------------------------- /app/assets/images/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bd.png -------------------------------------------------------------------------------- /app/assets/images/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/be.png -------------------------------------------------------------------------------- /app/assets/images/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bf.png -------------------------------------------------------------------------------- /app/assets/images/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bg.png -------------------------------------------------------------------------------- /app/assets/images/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bh.png -------------------------------------------------------------------------------- /app/assets/images/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bi.png -------------------------------------------------------------------------------- /app/assets/images/flags/bj (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bj (1).png -------------------------------------------------------------------------------- /app/assets/images/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bj.png -------------------------------------------------------------------------------- /app/assets/images/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bm.png -------------------------------------------------------------------------------- /app/assets/images/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bn.png -------------------------------------------------------------------------------- /app/assets/images/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bo.png -------------------------------------------------------------------------------- /app/assets/images/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/br.png -------------------------------------------------------------------------------- /app/assets/images/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bs.png -------------------------------------------------------------------------------- /app/assets/images/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bt.png -------------------------------------------------------------------------------- /app/assets/images/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bv.png -------------------------------------------------------------------------------- /app/assets/images/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bw.png -------------------------------------------------------------------------------- /app/assets/images/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/by.png -------------------------------------------------------------------------------- /app/assets/images/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/bz.png -------------------------------------------------------------------------------- /app/assets/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ca.png -------------------------------------------------------------------------------- /app/assets/images/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cc.png -------------------------------------------------------------------------------- /app/assets/images/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cf.png -------------------------------------------------------------------------------- /app/assets/images/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cg.png -------------------------------------------------------------------------------- /app/assets/images/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cn.png -------------------------------------------------------------------------------- /app/assets/images/flags/co (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/co (1).png -------------------------------------------------------------------------------- /app/assets/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/co.png -------------------------------------------------------------------------------- /app/assets/images/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cr.png -------------------------------------------------------------------------------- /app/assets/images/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cs.png -------------------------------------------------------------------------------- /app/assets/images/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cu.png -------------------------------------------------------------------------------- /app/assets/images/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cx.png -------------------------------------------------------------------------------- /app/assets/images/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cy.png -------------------------------------------------------------------------------- /app/assets/images/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/cz.png -------------------------------------------------------------------------------- /app/assets/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/de.png -------------------------------------------------------------------------------- /app/assets/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/es.png -------------------------------------------------------------------------------- /app/assets/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/fr.png -------------------------------------------------------------------------------- /app/assets/images/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/ru.png -------------------------------------------------------------------------------- /app/assets/images/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/tr.png -------------------------------------------------------------------------------- /app/assets/images/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/flags/us.png -------------------------------------------------------------------------------- /app/assets/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/assets/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/assets/images/gradient/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/gradient/login.png -------------------------------------------------------------------------------- /app/assets/images/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/hue.png -------------------------------------------------------------------------------- /app/assets/images/invoice/americanexpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/invoice/americanexpress.png -------------------------------------------------------------------------------- /app/assets/images/invoice/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/invoice/license.txt -------------------------------------------------------------------------------- /app/assets/images/invoice/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/invoice/mastercard.png -------------------------------------------------------------------------------- /app/assets/images/invoice/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/invoice/paypal.png -------------------------------------------------------------------------------- /app/assets/images/invoice/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/invoice/visa.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_428bca_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_428bca_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_f0ad4e_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_f0ad4e_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_f6cf3b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_f6cf3b_256x240.png -------------------------------------------------------------------------------- /app/assets/images/jqueryui/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/jqueryui/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/images/logo-blacknwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/logo-blacknwhite.png -------------------------------------------------------------------------------- /app/assets/images/logo-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/logo-o.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/misc/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/misc/map.png -------------------------------------------------------------------------------- /app/assets/images/misc/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/misc/purple.png -------------------------------------------------------------------------------- /app/assets/images/mybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/mybg.png -------------------------------------------------------------------------------- /app/assets/images/openvpn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/openvpn.jpg -------------------------------------------------------------------------------- /app/assets/images/pattern/divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/divider.jpg -------------------------------------------------------------------------------- /app/assets/images/pattern/graphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/graphy.png -------------------------------------------------------------------------------- /app/assets/images/pattern/lightpaperfibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/lightpaperfibers.png -------------------------------------------------------------------------------- /app/assets/images/pattern/movable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/movable.png -------------------------------------------------------------------------------- /app/assets/images/pattern/nistri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/nistri.png -------------------------------------------------------------------------------- /app/assets/images/pattern/overlay-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/overlay-pattern.png -------------------------------------------------------------------------------- /app/assets/images/pattern/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/pattern.png -------------------------------------------------------------------------------- /app/assets/images/pattern/purty_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/purty_wood.png -------------------------------------------------------------------------------- /app/assets/images/pattern/retina_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/retina_wood.png -------------------------------------------------------------------------------- /app/assets/images/pattern/sneaker_mesh_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/sneaker_mesh_fabric.png -------------------------------------------------------------------------------- /app/assets/images/pattern/tileable_wood_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pattern/tileable_wood_texture.png -------------------------------------------------------------------------------- /app/assets/images/paxum_usd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/paxum_usd_logo.png -------------------------------------------------------------------------------- /app/assets/images/pay_system_logos/cc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pay_system_logos/cc_logo.png -------------------------------------------------------------------------------- /app/assets/images/pay_system_logos/paypal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pay_system_logos/paypal_logo.png -------------------------------------------------------------------------------- /app/assets/images/pay_system_logos/wmr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pay_system_logos/wmr_logo.png -------------------------------------------------------------------------------- /app/assets/images/pay_system_logos/wmz_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pay_system_logos/wmz_logo.png -------------------------------------------------------------------------------- /app/assets/images/pay_system_logos/yandex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/pay_system_logos/yandex_logo.png -------------------------------------------------------------------------------- /app/assets/images/publishing-images/multiple-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/publishing-images/multiple-layout.png -------------------------------------------------------------------------------- /app/assets/images/publishing-images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/publishing-images/screenshot.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/redpass_usd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/redpass_usd_logo.png -------------------------------------------------------------------------------- /app/assets/images/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/ribbon.png -------------------------------------------------------------------------------- /app/assets/images/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/saturation.png -------------------------------------------------------------------------------- /app/assets/images/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/select2-spinner.gif -------------------------------------------------------------------------------- /app/assets/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/select2.png -------------------------------------------------------------------------------- /app/assets/images/slides/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/slides/slide1.png -------------------------------------------------------------------------------- /app/assets/images/slides/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/slides/slide2.png -------------------------------------------------------------------------------- /app/assets/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/sort_asc.png -------------------------------------------------------------------------------- /app/assets/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/sort_both.png -------------------------------------------------------------------------------- /app/assets/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/sort_desc.png -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-1.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-10.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-11.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-12.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-13.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-14.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-15.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-16.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-17.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-18.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-19.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-2.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-20.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-21.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-22.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-23.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-24.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-3.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-4.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-5.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-6.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-7.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-8.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-full-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-full-9.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-1.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-10.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-11.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-12.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-13.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-14.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-15.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-16.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-17.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-18.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-19.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-2.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-20.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-21.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-22.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-23.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-24.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-3.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-4.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-5.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-6.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-7.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-8.jpg -------------------------------------------------------------------------------- /app/assets/images/superbox/superbox-thumb-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/superbox/superbox-thumb-9.jpg -------------------------------------------------------------------------------- /app/assets/images/team/adele.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/adele.jpg -------------------------------------------------------------------------------- /app/assets/images/team/bono.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/bono.jpg -------------------------------------------------------------------------------- /app/assets/images/team/deniro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/deniro.jpg -------------------------------------------------------------------------------- /app/assets/images/team/jimi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/jimi.jpg -------------------------------------------------------------------------------- /app/assets/images/team/jobs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/jobs.jpg -------------------------------------------------------------------------------- /app/assets/images/team/jolie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/jolie.jpg -------------------------------------------------------------------------------- /app/assets/images/team/obama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/obama.jpg -------------------------------------------------------------------------------- /app/assets/images/team/women1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/images/team/women1.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/admin.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/application.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/main.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/main.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/options.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/options.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-affix.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-alert.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-button.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-carousel.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-collapse.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-dropdown.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-popover.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-tab.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-tooltip.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-transition.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/bootstrap-typeahead.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/html5shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/html5shim.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/jquery.flexslider-min.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/jquery.quicksand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/jquery.quicksand.js -------------------------------------------------------------------------------- /app/assets/javascripts/theme/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/javascripts/theme/script.js -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main-admin.scss: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/main.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/shared.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/shared.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/theme/bootstrap.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/theme/bootstrap.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/theme/custom-colour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/theme/custom-colour.css -------------------------------------------------------------------------------- /app/assets/stylesheets/theme/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/theme/flexslider.css -------------------------------------------------------------------------------- /app/assets/stylesheets/theme/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/theme/responsive.css -------------------------------------------------------------------------------- /app/assets/stylesheets/theme/theme-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/assets/stylesheets/theme/theme-style.css -------------------------------------------------------------------------------- /app/cells/web/admin/change_locale_link_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/cells/web/admin/change_locale_link_cell.rb -------------------------------------------------------------------------------- /app/cells/web/base_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/cells/web/base_cell.rb -------------------------------------------------------------------------------- /app/controllers/admin/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/change_languages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/change_languages_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/connections_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/connections_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/options_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/options_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/pay_systems_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/pay_systems_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/plans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/plans_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/profiles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/profiles_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/promos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/promos_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/referrers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/referrers_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/servers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/servers_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/traffic_reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/traffic_reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/transactions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/transactions_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/admins/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/admins/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/authentication_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/api/authentication_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/api/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/connection_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/api/connection_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/servers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/api/servers_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/merchant_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/merchant_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/options_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/options_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/payments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/payments_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/paypal_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/paypal_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/promotions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/promotions_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/referrers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/referrers_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/robokassa_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/robokassa_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/servers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/servers_controller.rb -------------------------------------------------------------------------------- /app/controllers/billing/webmoney_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/billing/webmoney_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/main_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/main_controller.rb -------------------------------------------------------------------------------- /app/controllers/referrers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/referrers_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/users/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/controllers/users/sessions_controller.rb -------------------------------------------------------------------------------- /app/decorators/admin/options_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/decorators/admin/options_decorator.rb -------------------------------------------------------------------------------- /app/decorators/option_attribute_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/decorators/option_attribute_decorator.rb -------------------------------------------------------------------------------- /app/decorators/pay_system_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/decorators/pay_system_decorator.rb -------------------------------------------------------------------------------- /app/decorators/promo_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/decorators/promo_decorator.rb -------------------------------------------------------------------------------- /app/decorators/transaction_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/decorators/transaction_decorator.rb -------------------------------------------------------------------------------- /app/decorators/user_decorator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/decorators/user_decorator.rb -------------------------------------------------------------------------------- /app/exceptions/api_exception.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | class ApiException < RuntimeError; end 4 | -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/helpers/admin_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/main_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/helpers/main_helper.rb -------------------------------------------------------------------------------- /app/helpers/options_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/helpers/options_helper.rb -------------------------------------------------------------------------------- /app/helpers/promos_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/helpers/promos_helper.rb -------------------------------------------------------------------------------- /app/helpers/servers_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/helpers/servers_helper.rb -------------------------------------------------------------------------------- /app/inputs/datepicker_input.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/inputs/datepicker_input.rb -------------------------------------------------------------------------------- /app/mailers/user_connection_config_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/mailers/user_connection_config_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/authenticator.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/last_days_filterable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/concerns/last_days_filterable.rb -------------------------------------------------------------------------------- /app/models/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/connection.rb -------------------------------------------------------------------------------- /app/models/connections/connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/connections/connect.rb -------------------------------------------------------------------------------- /app/models/connections/disconnect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/connections/disconnect.rb -------------------------------------------------------------------------------- /app/models/connector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/connector.rb -------------------------------------------------------------------------------- /app/models/option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/option.rb -------------------------------------------------------------------------------- /app/models/options/attributes/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/options/attributes/proxy.rb -------------------------------------------------------------------------------- /app/models/options/hooks/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/options/hooks/proxy.rb -------------------------------------------------------------------------------- /app/models/pay_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/pay_system.rb -------------------------------------------------------------------------------- /app/models/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/payment.rb -------------------------------------------------------------------------------- /app/models/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/plan.rb -------------------------------------------------------------------------------- /app/models/plan_has_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/plan_has_server.rb -------------------------------------------------------------------------------- /app/models/promo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/promo.rb -------------------------------------------------------------------------------- /app/models/promoter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/promoter.rb -------------------------------------------------------------------------------- /app/models/promoters/discount_promoter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/promoters/discount_promoter.rb -------------------------------------------------------------------------------- /app/models/promoters_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/promoters_repository.rb -------------------------------------------------------------------------------- /app/models/promotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/promotion.rb -------------------------------------------------------------------------------- /app/models/proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/proxy.rb -------------------------------------------------------------------------------- /app/models/proxy/connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/proxy/connect.rb -------------------------------------------------------------------------------- /app/models/proxy/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/proxy/node.rb -------------------------------------------------------------------------------- /app/models/referrer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/referrer.rb -------------------------------------------------------------------------------- /app/models/referrer/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/referrer/account.rb -------------------------------------------------------------------------------- /app/models/referrer/reward.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/referrer/reward.rb -------------------------------------------------------------------------------- /app/models/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/server.rb -------------------------------------------------------------------------------- /app/models/server/signature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/server/signature.rb -------------------------------------------------------------------------------- /app/models/server_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/server_config.rb -------------------------------------------------------------------------------- /app/models/test_period.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/test_period.rb -------------------------------------------------------------------------------- /app/models/traffic_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/traffic_report.rb -------------------------------------------------------------------------------- /app/models/traffic_reports/date_traffic_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/traffic_reports/date_traffic_report.rb -------------------------------------------------------------------------------- /app/models/traffic_reports/server_traffic_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/traffic_reports/server_traffic_report.rb -------------------------------------------------------------------------------- /app/models/traffic_reports/user_traffic_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/traffic_reports/user_traffic_report.rb -------------------------------------------------------------------------------- /app/models/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/transaction.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/user_option.rb -------------------------------------------------------------------------------- /app/models/withdrawal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/withdrawal.rb -------------------------------------------------------------------------------- /app/models/withdrawal_prolongation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/models/withdrawal_prolongation.rb -------------------------------------------------------------------------------- /app/operations/ops/admin/user/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/operations/ops/admin/user/base.rb -------------------------------------------------------------------------------- /app/operations/ops/admin/user/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/operations/ops/admin/user/create.rb -------------------------------------------------------------------------------- /app/ransackers/base_ransacker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/ransackers/base_ransacker.rb -------------------------------------------------------------------------------- /app/ransackers/never_paid_users_ransacker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/ransackers/never_paid_users_ransacker.rb -------------------------------------------------------------------------------- /app/serializers/admin/users_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/serializers/admin/users_serializer.rb -------------------------------------------------------------------------------- /app/serializers/api/connect_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/serializers/api/connect_serializer.rb -------------------------------------------------------------------------------- /app/serializers/api/connection_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/serializers/api/connection_serializer.rb -------------------------------------------------------------------------------- /app/serializers/api/disconnect_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/serializers/api/disconnect_serializer.rb -------------------------------------------------------------------------------- /app/services/dto/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/dto/admin/dashboard.rb -------------------------------------------------------------------------------- /app/services/dto/admin/discrete_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/dto/admin/discrete_base.rb -------------------------------------------------------------------------------- /app/services/dto/admin/discrete_payments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/dto/admin/discrete_payments.rb -------------------------------------------------------------------------------- /app/services/dto/admin/discrete_traffic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/dto/admin/discrete_traffic.rb -------------------------------------------------------------------------------- /app/services/dto/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/dto/base.rb -------------------------------------------------------------------------------- /app/services/forced_disconnect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/forced_disconnect.rb -------------------------------------------------------------------------------- /app/services/newsletter_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/newsletter_manager.rb -------------------------------------------------------------------------------- /app/services/option/activation_price_calc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/option/activation_price_calc.rb -------------------------------------------------------------------------------- /app/services/option/activator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/option/activator.rb -------------------------------------------------------------------------------- /app/services/option/deactivator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/option/deactivator.rb -------------------------------------------------------------------------------- /app/services/proxy/fetchers/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/proxy/fetchers/base.rb -------------------------------------------------------------------------------- /app/services/proxy/proxy_dto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/proxy/proxy_dto.rb -------------------------------------------------------------------------------- /app/services/proxy/rater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/proxy/rater.rb -------------------------------------------------------------------------------- /app/services/proxy/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/proxy/repository.rb -------------------------------------------------------------------------------- /app/services/proxy/updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/proxy/updater.rb -------------------------------------------------------------------------------- /app/services/referrer/reward_calculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/referrer/reward_calculator.rb -------------------------------------------------------------------------------- /app/services/referrer/rewarder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/referrer/rewarder.rb -------------------------------------------------------------------------------- /app/services/server_config_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/server_config_builder.rb -------------------------------------------------------------------------------- /app/services/unpaid_users_notificator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/unpaid_users_notificator.rb -------------------------------------------------------------------------------- /app/services/withdrawal_amount_calculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/withdrawal_amount_calculator.rb -------------------------------------------------------------------------------- /app/services/withdrawer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/services/withdrawer.rb -------------------------------------------------------------------------------- /app/uploaders/config_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/uploaders/config_uploader.rb -------------------------------------------------------------------------------- /app/views/admin/connections/_filter.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/connections/_filter.html.slim -------------------------------------------------------------------------------- /app/views/admin/connections/active.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/connections/active.html.slim -------------------------------------------------------------------------------- /app/views/admin/connections/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/connections/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/connections/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/connections/show.html.slim -------------------------------------------------------------------------------- /app/views/admin/home/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/home/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/options/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/options/_form.html.slim -------------------------------------------------------------------------------- /app/views/admin/options/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/options/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/options/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/options/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/options/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/options/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/pay_systems/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/pay_systems/_form.html.slim -------------------------------------------------------------------------------- /app/views/admin/pay_systems/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/pay_systems/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/pay_systems/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/pay_systems/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/pay_systems/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/pay_systems/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/pay_systems/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/pay_systems/show.html.slim -------------------------------------------------------------------------------- /app/views/admin/plans/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/plans/_form.html.slim -------------------------------------------------------------------------------- /app/views/admin/plans/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/plans/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/plans/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/plans/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/plans/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/plans/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/profiles/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/profiles/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/promos/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/promos/_form.html.slim -------------------------------------------------------------------------------- /app/views/admin/promos/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/promos/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/promos/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/promos/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/promos/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/promos/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/referrers/_referrals.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/referrers/_referrals.html.slim -------------------------------------------------------------------------------- /app/views/admin/referrers/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/referrers/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/servers/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/servers/_form.html.slim -------------------------------------------------------------------------------- /app/views/admin/servers/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/servers/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/servers/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/servers/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/servers/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/servers/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/servers/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/servers/show.html.slim -------------------------------------------------------------------------------- /app/views/admin/shared/_menu.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/shared/_menu.html.slim -------------------------------------------------------------------------------- /app/views/admin/shared/_paginate.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/shared/_paginate.html.slim -------------------------------------------------------------------------------- /app/views/admin/traffic_reports/_filter.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/traffic_reports/_filter.html.slim -------------------------------------------------------------------------------- /app/views/admin/traffic_reports/_submenu.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/traffic_reports/_submenu.html.slim -------------------------------------------------------------------------------- /app/views/admin/traffic_reports/date.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/traffic_reports/date.html.slim -------------------------------------------------------------------------------- /app/views/admin/traffic_reports/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/traffic_reports/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/traffic_reports/servers.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/traffic_reports/servers.html.slim -------------------------------------------------------------------------------- /app/views/admin/traffic_reports/users.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/traffic_reports/users.html.slim -------------------------------------------------------------------------------- /app/views/admin/transactions/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/transactions/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/transactions/payments.html.slim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/transactions/withdrawals.html.slim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/users/_filter.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/_filter.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/_payment.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/_payment.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/_prolongation.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/_prolongation.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/_submenu.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/_submenu.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/_table.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/_table.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/_test_period.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/_test_period.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/edit.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/index.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/new.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/payers.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/payers.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/show.html.slim -------------------------------------------------------------------------------- /app/views/admin/users/this_month_payers.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admin/users/this_month_payers.html.slim -------------------------------------------------------------------------------- /app/views/admins/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/admins/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/admins/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/admins/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/admins/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/admins/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/admins/sessions/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/sessions/new.html.slim -------------------------------------------------------------------------------- /app/views/admins/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/shared/_links.erb -------------------------------------------------------------------------------- /app/views/admins/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/admins/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/application/_notifications.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/application/_notifications.html.slim -------------------------------------------------------------------------------- /app/views/billing/home/_account_info.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/home/_account_info.html.slim -------------------------------------------------------------------------------- /app/views/billing/home/_current_connection.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/home/_current_connection.html.slim -------------------------------------------------------------------------------- /app/views/billing/home/_last_transactions.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/home/_last_transactions.html.slim -------------------------------------------------------------------------------- /app/views/billing/home/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/home/index.html.slim -------------------------------------------------------------------------------- /app/views/billing/options/_subscribed_options.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/options/_subscribed_options.html.slim -------------------------------------------------------------------------------- /app/views/billing/options/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/options/index.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/forms/_cc.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/forms/_cc.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/forms/_paypal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/forms/_paypal.html.erb -------------------------------------------------------------------------------- /app/views/billing/payments/forms/_wmr.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/forms/_wmr.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/forms/_wmz.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/forms/_wmz.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/forms/_yandex.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/forms/_yandex.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/index.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/merchant.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/merchant.html.slim -------------------------------------------------------------------------------- /app/views/billing/payments/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/payments/new.html.slim -------------------------------------------------------------------------------- /app/views/billing/referrers/_operations.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/referrers/_operations.html.slim -------------------------------------------------------------------------------- /app/views/billing/referrers/_referrals.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/referrers/_referrals.html.slim -------------------------------------------------------------------------------- /app/views/billing/referrers/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/referrers/index.html.slim -------------------------------------------------------------------------------- /app/views/billing/servers/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/billing/servers/index.html.slim -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/layouts/admin.html.slim -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/billing.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/layouts/billing.html.slim -------------------------------------------------------------------------------- /app/views/layouts/blank.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/layouts/blank.html.slim -------------------------------------------------------------------------------- /app/views/mailers/_signature.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/mailers/_signature.html.slim -------------------------------------------------------------------------------- /app/views/mailers/user_mailer/funds_recieved.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/mailers/user_mailer/funds_recieved.html.slim -------------------------------------------------------------------------------- /app/views/main/auth.html.slim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/main/index.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/main/index.html.slim -------------------------------------------------------------------------------- /app/views/shared/_footer.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/shared/_footer.html.slim -------------------------------------------------------------------------------- /app/views/shared/_rollbar_js.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/shared/_rollbar_js.html.erb -------------------------------------------------------------------------------- /app/views/shared/_yandex_metrika.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/shared/_yandex_metrika.html.erb -------------------------------------------------------------------------------- /app/views/shared/_zendesk.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/shared/_zendesk.html.erb -------------------------------------------------------------------------------- /app/views/users/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/users/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/users/passwords/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/passwords/edit.html.slim -------------------------------------------------------------------------------- /app/views/users/passwords/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/passwords/new.html.slim -------------------------------------------------------------------------------- /app/views/users/registrations/_promo.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/registrations/_promo.html.slim -------------------------------------------------------------------------------- /app/views/users/registrations/edit.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/registrations/edit.html.slim -------------------------------------------------------------------------------- /app/views/users/registrations/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/registrations/new.html.slim -------------------------------------------------------------------------------- /app/views/users/sessions/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/sessions/new.html.slim -------------------------------------------------------------------------------- /app/views/users/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/shared/_links.erb -------------------------------------------------------------------------------- /app/views/users/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/views/users/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/workers/add_user_to_newsletter_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/add_user_to_newsletter_worker.rb -------------------------------------------------------------------------------- /app/workers/can_not_withdraw_notification_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/can_not_withdraw_notification_worker.rb -------------------------------------------------------------------------------- /app/workers/create_user_mail_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/create_user_mail_worker.rb -------------------------------------------------------------------------------- /app/workers/decrease_balance_mail_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/decrease_balance_mail_worker.rb -------------------------------------------------------------------------------- /app/workers/increase_balance_mail_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/increase_balance_mail_worker.rb -------------------------------------------------------------------------------- /app/workers/refresh_proxy_list_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/refresh_proxy_list_worker.rb -------------------------------------------------------------------------------- /app/workers/unpaid_user_notification_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/unpaid_user_notification_worker.rb -------------------------------------------------------------------------------- /app/workers/update_courses_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/update_courses_worker.rb -------------------------------------------------------------------------------- /app/workers/withdrawals_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/app/workers/withdrawals_worker.rb -------------------------------------------------------------------------------- /bin/build-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/bin/build-image -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/cop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/bin/cop -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/clock.rb -------------------------------------------------------------------------------- /config/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/countries.json -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/active_merchant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/active_merchant.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rails_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/rails_config.rb -------------------------------------------------------------------------------- /config/initializers/rollbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/rollbar.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/show_for.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/show_for.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/admin/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/admin/en.yml -------------------------------------------------------------------------------- /config/locales/admin/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/admin/ru.yml -------------------------------------------------------------------------------- /config/locales/billing/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/billing/en.yml -------------------------------------------------------------------------------- /config/locales/billing/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/billing/ru.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/devise.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/devise.ru.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/kaminari.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/kaminari.en.yml -------------------------------------------------------------------------------- /config/locales/kaminari.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/kaminari.ru.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/show_for.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/show_for.en.yml -------------------------------------------------------------------------------- /config/locales/show_for.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/show_for.ru.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/simple_form.ru.yml -------------------------------------------------------------------------------- /config/locales/site/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/site/en.yml -------------------------------------------------------------------------------- /config/locales/site/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/locales/site/ru.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sample.server.ovpn.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/sample.server.ovpn.erb -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/settings/development.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/production.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/test.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrate/20130409190444_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130409190444_create_posts.rb -------------------------------------------------------------------------------- /db/migrate/20130421110154_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130421110154_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20130421110911_create_admins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130421110911_create_admins.rb -------------------------------------------------------------------------------- /db/migrate/20130501081828_add_fields_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130501081828_add_fields_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20130501083417_create_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130501083417_create_plans.rb -------------------------------------------------------------------------------- /db/migrate/20130504105921_create_payments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130504105921_create_payments.rb -------------------------------------------------------------------------------- /db/migrate/20130504144707_create_pay_systems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130504144707_create_pay_systems.rb -------------------------------------------------------------------------------- /db/migrate/20130505183444_create_withdrawals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130505183444_create_withdrawals.rb -------------------------------------------------------------------------------- /db/migrate/20130810125453_create_servers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20130810125453_create_servers.rb -------------------------------------------------------------------------------- /db/migrate/20131005133458_create_connections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20131005133458_create_connections.rb -------------------------------------------------------------------------------- /db/migrate/20131013140201_add_state_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20131013140201_add_state_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20140112113325_create_plan_has_servers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140112113325_create_plan_has_servers.rb -------------------------------------------------------------------------------- /db/migrate/20140112123216_remove_plan_id_from_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140112123216_remove_plan_id_from_server.rb -------------------------------------------------------------------------------- /db/migrate/20140202164317_create_promos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140202164317_create_promos.rb -------------------------------------------------------------------------------- /db/migrate/20140202164614_create_promotions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140202164614_create_promotions.rb -------------------------------------------------------------------------------- /db/migrate/20140202175203_add_attributes_to_promo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140202175203_add_attributes_to_promo.rb -------------------------------------------------------------------------------- /db/migrate/20140203184711_add_state_to_promo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140203184711_add_state_to_promo.rb -------------------------------------------------------------------------------- /db/migrate/20140227113644_add_state_to_pay_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140227113644_add_state_to_pay_system.rb -------------------------------------------------------------------------------- /db/migrate/20140301125212_add_currency_to_pay_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140301125212_add_currency_to_pay_system.rb -------------------------------------------------------------------------------- /db/migrate/20140301130258_add_usd_amount_to_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140301130258_add_usd_amount_to_payment.rb -------------------------------------------------------------------------------- /db/migrate/20140518132954_create_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140518132954_create_options.rb -------------------------------------------------------------------------------- /db/migrate/20140518133314_create_plan_option_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140518133314_create_plan_option_table.rb -------------------------------------------------------------------------------- /db/migrate/20140518134712_add_state_to_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140518134712_add_state_to_option.rb -------------------------------------------------------------------------------- /db/migrate/20140525091015_add_option_prices_to_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140525091015_add_option_prices_to_plan.rb -------------------------------------------------------------------------------- /db/migrate/20140525103921_create_options_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140525103921_create_options_users.rb -------------------------------------------------------------------------------- /db/migrate/20140727094748_add_reflink_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140727094748_add_reflink_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20140728204118_add_referrer_id_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140728204118_add_referrer_id_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20140801123341_create_referrer_rewards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140801123341_create_referrer_rewards.rb -------------------------------------------------------------------------------- /db/migrate/20140817131003_create_proxy_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140817131003_create_proxy_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20140819160419_remove_options_users_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140819160419_remove_options_users_table.rb -------------------------------------------------------------------------------- /db/migrate/20140819160716_create_user_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140819160716_create_user_options.rb -------------------------------------------------------------------------------- /db/migrate/20140823162252_create_proxy_connects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20140823162252_create_proxy_connects.rb -------------------------------------------------------------------------------- /db/migrate/20150104180714_add_state_to_user_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20150104180714_add_state_to_user_option.rb -------------------------------------------------------------------------------- /db/migrate/20150109161843_add_protocol_to_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20150109161843_add_protocol_to_server.rb -------------------------------------------------------------------------------- /db/migrate/20150109164839_add_port_to_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20150109164839_add_port_to_server.rb -------------------------------------------------------------------------------- /db/migrate/20150110141211_add_country_code_to_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20150110141211_add_country_code_to_server.rb -------------------------------------------------------------------------------- /db/migrate/20181014150549_add_default_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20181014150549_add_default_user.rb -------------------------------------------------------------------------------- /db/migrate/20190122184018_add_pki_to_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/migrate/20190122184018_add_pki_to_server.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/01_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/01_options.rb -------------------------------------------------------------------------------- /db/seeds/02_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/02_plans.rb -------------------------------------------------------------------------------- /db/seeds/03_pay_systems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/03_pay_systems.rb -------------------------------------------------------------------------------- /db/seeds/04_default_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/04_default_user.rb -------------------------------------------------------------------------------- /db/seeds/05_default_user_referrals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/05_default_user_referrals.rb -------------------------------------------------------------------------------- /db/seeds/06_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/06_admin.rb -------------------------------------------------------------------------------- /db/seeds/07_servers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/07_servers.rb -------------------------------------------------------------------------------- /db/seeds/08_default_user_connects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/db/seeds/08_default_user_connects.rb -------------------------------------------------------------------------------- /docker-compose.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/docker-compose.development.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/bytes_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/bytes_converter.rb -------------------------------------------------------------------------------- /lib/currencies/course.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/currencies/course.rb -------------------------------------------------------------------------------- /lib/currencies/course_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/currencies/course_converter.rb -------------------------------------------------------------------------------- /lib/exceptions/admin_access_denied_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/admin_access_denied_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/api_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/api_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/billing_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/billing_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/dto_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/dto_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/not_implemented_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/not_implemented_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/smartvpn_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/smartvpn_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/unauthorized_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/unauthorized_exception.rb -------------------------------------------------------------------------------- /lib/exceptions/withdrawer_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/exceptions/withdrawer_exception.rb -------------------------------------------------------------------------------- /lib/random_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/random_string.rb -------------------------------------------------------------------------------- /lib/signer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/signer.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/tasks/assets.rake -------------------------------------------------------------------------------- /lib/tasks/seed_initial_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/tasks/seed_initial_data.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/lib/templates/erb/scaffold/show.html.erb -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/404.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/500.html -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/css/colour-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/colour-blue.css -------------------------------------------------------------------------------- /public/css/colour-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/colour-red.css -------------------------------------------------------------------------------- /public/css/custom-colour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/custom-colour.css -------------------------------------------------------------------------------- /public/css/custom-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/custom-style.css -------------------------------------------------------------------------------- /public/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/flexslider.css -------------------------------------------------------------------------------- /public/css/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/font/FontAwesome.otf -------------------------------------------------------------------------------- /public/css/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/css/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/css/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/css/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/responsive.css -------------------------------------------------------------------------------- /public/css/theme-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/css/theme-style.css -------------------------------------------------------------------------------- /public/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/README.txt -------------------------------------------------------------------------------- /public/img/anonym.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/anonym.jpg -------------------------------------------------------------------------------- /public/img/bg_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/bg_diamond.png -------------------------------------------------------------------------------- /public/img/bg_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/bg_divider.png -------------------------------------------------------------------------------- /public/img/bg_noise-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/bg_noise-2.png -------------------------------------------------------------------------------- /public/img/bg_noise-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/bg_noise-5.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/logo.jpg -------------------------------------------------------------------------------- /public/img/osi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/osi.jpg -------------------------------------------------------------------------------- /public/img/security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/security.jpg -------------------------------------------------------------------------------- /public/img/sorm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/sorm.jpg -------------------------------------------------------------------------------- /public/img/t-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/t-logo.png -------------------------------------------------------------------------------- /public/img/vpn_tunnel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/vpn_tunnel.jpg -------------------------------------------------------------------------------- /public/img/wm-cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/wm-cert.png -------------------------------------------------------------------------------- /public/img/wm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/img/wm-logo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/public/index.html -------------------------------------------------------------------------------- /spec/cells/web/admin/change_locale_link_cell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/cells/web/admin/change_locale_link_cell_spec.rb -------------------------------------------------------------------------------- /spec/config/clock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/config/clock_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/connections_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/connections_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/options_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/options_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/pay_systems_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/pay_systems_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/plans_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/plans_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/profiles_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/profiles_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/promos_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/promos_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/referrers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/referrers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/servers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/servers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/admin/transactions_controller_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/controllers/admin/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/admin/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/authentication_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/api/authentication_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/connection_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/api/connection_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/servers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/api/servers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/billing/options_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/billing/options_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/billing/payments_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/billing/payments_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/billing/paypal_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/billing/paypal_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/billing/promotions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/billing/promotions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/billing/servers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/billing/servers_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/billing/webmoney_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/billing/webmoney_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/referrers_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/controllers/referrers_controller_spec.rb -------------------------------------------------------------------------------- /spec/decorators/admin/options_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/decorators/admin/options_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/option_attribute_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/decorators/option_attribute_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/pay_system_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/decorators/pay_system_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/promo_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/decorators/promo_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/transaction_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/decorators/transaction_decorator_spec.rb -------------------------------------------------------------------------------- /spec/decorators/user_decorator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/decorators/user_decorator_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/features/admin/users/manual_payment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/admin/users/manual_payment_spec.rb -------------------------------------------------------------------------------- /spec/features/admin/users/user_profile_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/admin/users/user_profile_page_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/options_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/options_page_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/payments_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/payments_page_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/referrers_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/referrers_page_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/servers_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/servers_page_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/settings_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/settings_page_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/user_password_reset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/user_password_reset_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/user_sign_in_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/user_sign_in_spec.rb -------------------------------------------------------------------------------- /spec/features/billing/user_sign_up_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/features/billing/user_sign_up_spec.rb -------------------------------------------------------------------------------- /spec/helpers/admin_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/helpers/admin_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/i18n_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/i18n_spec.rb -------------------------------------------------------------------------------- /spec/lib/bytes_converter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/lib/bytes_converter_spec.rb -------------------------------------------------------------------------------- /spec/lib/currencies/course_converter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/lib/currencies/course_converter_spec.rb -------------------------------------------------------------------------------- /spec/lib/currencies/course_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/lib/currencies/course_spec.rb -------------------------------------------------------------------------------- /spec/lib/random_string_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/lib/random_string_spec.rb -------------------------------------------------------------------------------- /spec/lib/signer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/lib/signer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/user_connection_config_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/mailers/user_connection_config_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/authenticator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/authenticator_spec.rb -------------------------------------------------------------------------------- /spec/models/connect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/connect_spec.rb -------------------------------------------------------------------------------- /spec/models/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/connection_spec.rb -------------------------------------------------------------------------------- /spec/models/connector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/connector_spec.rb -------------------------------------------------------------------------------- /spec/models/disconnect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/disconnect_spec.rb -------------------------------------------------------------------------------- /spec/models/option_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/option_spec.rb -------------------------------------------------------------------------------- /spec/models/options/hooks/proxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/options/hooks/proxy_spec.rb -------------------------------------------------------------------------------- /spec/models/pay_system_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/pay_system_spec.rb -------------------------------------------------------------------------------- /spec/models/payment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/payment_spec.rb -------------------------------------------------------------------------------- /spec/models/plan_has_server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/plan_has_server_spec.rb -------------------------------------------------------------------------------- /spec/models/plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/plan_spec.rb -------------------------------------------------------------------------------- /spec/models/promo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/promo_spec.rb -------------------------------------------------------------------------------- /spec/models/promoters/discount_promoter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/promoters/discount_promoter_spec.rb -------------------------------------------------------------------------------- /spec/models/promoters_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/promoters_repository_spec.rb -------------------------------------------------------------------------------- /spec/models/promotion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/promotion_spec.rb -------------------------------------------------------------------------------- /spec/models/proxy/connect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/proxy/connect_spec.rb -------------------------------------------------------------------------------- /spec/models/proxy/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/proxy/node_spec.rb -------------------------------------------------------------------------------- /spec/models/referrer/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/referrer/account_spec.rb -------------------------------------------------------------------------------- /spec/models/referrer/reward_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/referrer/reward_spec.rb -------------------------------------------------------------------------------- /spec/models/server/signature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/server/signature_spec.rb -------------------------------------------------------------------------------- /spec/models/server_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/server_config_spec.rb -------------------------------------------------------------------------------- /spec/models/server_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/server_spec.rb -------------------------------------------------------------------------------- /spec/models/test_period_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/test_period_spec.rb -------------------------------------------------------------------------------- /spec/models/traffic_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/traffic_report_spec.rb -------------------------------------------------------------------------------- /spec/models/transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/transaction_spec.rb -------------------------------------------------------------------------------- /spec/models/user_option_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/user_option_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/withdrawal_prolongation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/withdrawal_prolongation_spec.rb -------------------------------------------------------------------------------- /spec/models/withdrawal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/models/withdrawal_spec.rb -------------------------------------------------------------------------------- /spec/operations/ops/admin/user/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/operations/ops/admin/user/base_spec.rb -------------------------------------------------------------------------------- /spec/operations/ops/admin/user/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/operations/ops/admin/user/create_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'spec_helper' 4 | -------------------------------------------------------------------------------- /spec/serializers/admin/users_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/serializers/admin/users_serializer_spec.rb -------------------------------------------------------------------------------- /spec/serializers/api/connection_serializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/serializers/api/connection_serializer_spec.rb -------------------------------------------------------------------------------- /spec/services/dto/admin/dashboard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/dto/admin/dashboard_spec.rb -------------------------------------------------------------------------------- /spec/services/dto/admin/discrete_base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/dto/admin/discrete_base_spec.rb -------------------------------------------------------------------------------- /spec/services/forced_disconnect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/forced_disconnect_spec.rb -------------------------------------------------------------------------------- /spec/services/newsletter_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/newsletter_manager_spec.rb -------------------------------------------------------------------------------- /spec/services/option/activation_price_calc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/option/activation_price_calc_spec.rb -------------------------------------------------------------------------------- /spec/services/option/activator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/option/activator_spec.rb -------------------------------------------------------------------------------- /spec/services/option/deactivator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/option/deactivator_spec.rb -------------------------------------------------------------------------------- /spec/services/proxy/fetchers/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/proxy/fetchers/base_spec.rb -------------------------------------------------------------------------------- /spec/services/proxy/rater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/proxy/rater_spec.rb -------------------------------------------------------------------------------- /spec/services/proxy/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/proxy/repository_spec.rb -------------------------------------------------------------------------------- /spec/services/proxy/updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/proxy/updater_spec.rb -------------------------------------------------------------------------------- /spec/services/referrer/reward_calculator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/referrer/reward_calculator_spec.rb -------------------------------------------------------------------------------- /spec/services/referrer/rewarder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/referrer/rewarder_spec.rb -------------------------------------------------------------------------------- /spec/services/server_config_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/server_config_builder_spec.rb -------------------------------------------------------------------------------- /spec/services/unpaid_users_notificator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/unpaid_users_notificator_spec.rb -------------------------------------------------------------------------------- /spec/services/withdrawal_amount_calculator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/withdrawal_amount_calculator_spec.rb -------------------------------------------------------------------------------- /spec/services/withdrawer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/services/withdrawer_spec.rb -------------------------------------------------------------------------------- /spec/shared_examples/last_days_filterable_shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/shared_examples/last_days_filterable_shared.rb -------------------------------------------------------------------------------- /spec/shared_examples/payment_submit_spec_shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/shared_examples/payment_submit_spec_shared.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/support/capybara_helper.rb -------------------------------------------------------------------------------- /spec/support/controller_macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/support/controller_macros.rb -------------------------------------------------------------------------------- /spec/support/json_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/support/json_helpers.rb -------------------------------------------------------------------------------- /spec/support/matchers/json_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/support/matchers/json_matchers.rb -------------------------------------------------------------------------------- /spec/workers/create_user_mail_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/workers/create_user_mail_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/refresh_proxy_list_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/workers/refresh_proxy_list_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/update_cources_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/workers/update_cources_worker_spec.rb -------------------------------------------------------------------------------- /spec/workers/withdrawals_worker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn-billing/HEAD/spec/workers/withdrawals_worker_spec.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------