├── .env.sample ├── .github ├── FUNDING.yml └── workflows │ ├── dev.yml │ ├── pr.yml │ ├── prod.yml │ └── tag.yml ├── .gitignore ├── .hound.yml ├── .rspec ├── .rubocop.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── SESSIONS.md ├── app.json ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ └── home.css ├── controllers │ ├── admin │ │ └── admin_controller.rb │ ├── api │ │ ├── api_controller.rb │ │ ├── auth_controller.rb │ │ ├── items_controller.rb │ │ ├── revisions_controller.rb │ │ └── sessions_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── extension_settings_controller.rb │ └── health_check_controller.rb ├── jobs │ ├── account_cleanup_job.rb │ ├── application_job.rb │ ├── duplicate_revisions_job.rb │ ├── extension_job.rb │ └── registration_job.rb ├── log │ └── standard_notes_formatter.rb ├── mailers │ ├── application_mailer.rb │ ├── archive_mailer.rb │ └── user_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── uuid_helper.rb │ ├── extension_setting.rb │ ├── item.rb │ ├── item_revision.rb │ ├── revision.rb │ ├── revoked_session.rb │ ├── session.rb │ └── user.rb ├── services │ └── sns_publisher.rb └── views │ ├── application │ └── home.html │ ├── archive_mailer │ └── data_backup.html.erb │ ├── error_pages │ └── 404.html │ ├── extension_settings │ └── mute.html.haml │ ├── layouts │ ├── mailer.html.erb │ └── mailer.text.erb │ └── user_mailer │ ├── failed_backup.html.haml │ └── mfa_disabled.html.haml ├── bin ├── bundle ├── rails ├── rake ├── rspec ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── cap.example.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── docker_development.rb │ ├── production.rb │ ├── raspberry_pi.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── lograge.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ ├── new_framework_defaults_5_1.rb │ ├── new_framework_defaults_5_2.rb │ ├── octopus.rb │ ├── session_store.rb │ ├── sync_engine.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── newrelic.yml ├── puma.rb ├── routes.rb ├── schedule.rb ├── secrets.yml ├── shards.yml ├── shoryuken.yml ├── sn_auth.yml ├── sn_session.yml ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20161114004542_create_users.rb │ ├── 20161114004634_create_items.rb │ ├── 20170127020603_expand_content_column.rb │ ├── 20170205182304_add_content_type_index.rb │ ├── 20170213175749_migrate_dropbox_to_ext_server.rb │ ├── 20170221011303_increase_item_date_precision.rb │ ├── 20170309232850_change_item_key_to_text.rb │ ├── 20170703185958_add_salts.rb │ ├── 20170805143503_add_version.rb │ ├── 20170808194325_remove_pw_auth.rb │ ├── 20171102152234_add_user_agent_to_items.rb │ ├── 20180125022306_make_exts_daily.rb │ ├── 20180218153714_add_content_type_index_to_items.rb │ ├── 20180506160552_create_extension_settings.rb │ ├── 20180506170854_make_revisions_realtime.rb │ ├── 20190315163954_add_user_agent_to_user.rb │ ├── 20190525212549_add_lockout_to_users.rb │ ├── 20191229224131_add_items_key_id_to_items.rb │ ├── 20200220201723_add_better_indexes.rb │ ├── 20200328222807_add_items_deleted_index.rb │ ├── 20200410020904_create_sessions.rb │ ├── 20200601101128_add_item_revisions.rb │ ├── 20200605085931_add_duplicate_of_to_items.rb │ ├── 20200913150251_add_access_token_expiration.rb │ ├── 20200916205444_add_key_param_fields.rb │ ├── 20201001191834_add_item_uuid_to_revisions.rb │ ├── 20201002095431_add_revisions_creation_date_index.rb │ ├── 20201002113048_fix_creation_date_values.rb │ ├── 20201004040050_change_tokens_to_hashed.rb │ ├── 20201007160717_add_index_revisions_item_uuid.rb │ ├── 20201030072643_add_index_revisions_deleting.rb │ ├── 20201030072917_add_index_item_revisions_deleting.rb │ ├── 20201112082421_drop_index_revisions_deleting.rb │ ├── 20201112082430_drop_index_item_revisions_deleting.rb │ ├── 20210107122837_create_revoked_sessions.rb │ ├── 20210115151952_add_received_to_revoked_sessions.rb │ ├── 20210317134106_add_integer_timestamps.rb │ └── 20210317143819_add_integer_timestamps_index.rb └── schema.rb ├── docker-compose.development.yml ├── docker-compose.raspberry-pi.yml ├── docker-compose.yml ├── docker ├── api-gateway.env.sample ├── auth.env.sample ├── entrypoint.sh └── syncing-server-js.env.sample ├── lib ├── sync_engine │ ├── 2016_12_15 │ │ ├── sync_manager.rb │ │ └── user_manager.rb │ ├── 2019_05_20 │ │ ├── sync_manager.rb │ │ └── user_manager.rb │ ├── 2020_01_15 │ │ ├── sync_manager.rb │ │ └── user_manager.rb │ ├── abstract │ │ ├── sync_manager.rb │ │ └── user_manager.rb │ └── jwt_helper.rb └── tasks │ ├── migrate_ignore_concurrent.rake │ └── perform_daily_backup_jobs.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-384x384.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-150x150.png │ └── safari-pinned-tab.svg └── robots.txt ├── server.sh ├── spec ├── controllers │ ├── admin │ │ └── admin_controller_spec.rb │ ├── api │ │ ├── auth_controller_spec.rb │ │ ├── items_controller_spec.rb │ │ ├── revisions_controller_spec.rb │ │ └── sessions_controller_spec.rb │ └── extension_settings_controller_spec.rb ├── factories │ ├── item_revision.rb │ ├── items.rb │ ├── revision.rb │ └── users.rb ├── jobs │ ├── account_cleanup_job.rb │ ├── duplicate_revisions_job_spec.rb │ └── extension_job_spec.rb ├── models │ ├── item_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── requests │ └── homes_spec.rb ├── services │ └── sns_publisher_spec.rb ├── spec_helper.rb └── support │ ├── factory_bot.rb │ └── helpers.rb └── wait-for.sh /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.github/workflows/prod.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.hound.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/Rakefile -------------------------------------------------------------------------------- /SESSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/SESSIONS.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/assets/stylesheets/home.css -------------------------------------------------------------------------------- /app/controllers/admin/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/admin/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/api/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/api/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/api/items_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/revisions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/api/revisions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/extension_settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/extension_settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/health_check_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/controllers/health_check_controller.rb -------------------------------------------------------------------------------- /app/jobs/account_cleanup_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/jobs/account_cleanup_job.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/duplicate_revisions_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/jobs/duplicate_revisions_job.rb -------------------------------------------------------------------------------- /app/jobs/extension_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/jobs/extension_job.rb -------------------------------------------------------------------------------- /app/jobs/registration_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/jobs/registration_job.rb -------------------------------------------------------------------------------- /app/log/standard_notes_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/log/standard_notes_formatter.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/archive_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/mailers/archive_mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/uuid_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/concerns/uuid_helper.rb -------------------------------------------------------------------------------- /app/models/extension_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/extension_setting.rb -------------------------------------------------------------------------------- /app/models/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/item.rb -------------------------------------------------------------------------------- /app/models/item_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/item_revision.rb -------------------------------------------------------------------------------- /app/models/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/revision.rb -------------------------------------------------------------------------------- /app/models/revoked_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/revoked_session.rb -------------------------------------------------------------------------------- /app/models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/session.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/services/sns_publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/services/sns_publisher.rb -------------------------------------------------------------------------------- /app/views/application/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/application/home.html -------------------------------------------------------------------------------- /app/views/archive_mailer/data_backup.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/archive_mailer/data_backup.html.erb -------------------------------------------------------------------------------- /app/views/error_pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/error_pages/404.html -------------------------------------------------------------------------------- /app/views/extension_settings/mute.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/extension_settings/mute.html.haml -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/user_mailer/failed_backup.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/user_mailer/failed_backup.html.haml -------------------------------------------------------------------------------- /app/views/user_mailer/mfa_disabled.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/app/views/user_mailer/mfa_disabled.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/cap.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/cap.example.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/docker_development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environments/docker_development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/raspberry_pi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environments/raspberry_pi.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/lograge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/lograge.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_5_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/new_framework_defaults_5_1.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_5_2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/new_framework_defaults_5_2.rb -------------------------------------------------------------------------------- /config/initializers/octopus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/octopus.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sync_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/sync_engine.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/shards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/shards.yml -------------------------------------------------------------------------------- /config/shoryuken.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/shoryuken.yml -------------------------------------------------------------------------------- /config/sn_auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/sn_auth.yml -------------------------------------------------------------------------------- /config/sn_session.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/sn_session.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20161114004542_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20161114004542_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20161114004634_create_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20161114004634_create_items.rb -------------------------------------------------------------------------------- /db/migrate/20170127020603_expand_content_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170127020603_expand_content_column.rb -------------------------------------------------------------------------------- /db/migrate/20170205182304_add_content_type_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170205182304_add_content_type_index.rb -------------------------------------------------------------------------------- /db/migrate/20170213175749_migrate_dropbox_to_ext_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170213175749_migrate_dropbox_to_ext_server.rb -------------------------------------------------------------------------------- /db/migrate/20170221011303_increase_item_date_precision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170221011303_increase_item_date_precision.rb -------------------------------------------------------------------------------- /db/migrate/20170309232850_change_item_key_to_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170309232850_change_item_key_to_text.rb -------------------------------------------------------------------------------- /db/migrate/20170703185958_add_salts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170703185958_add_salts.rb -------------------------------------------------------------------------------- /db/migrate/20170805143503_add_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170805143503_add_version.rb -------------------------------------------------------------------------------- /db/migrate/20170808194325_remove_pw_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20170808194325_remove_pw_auth.rb -------------------------------------------------------------------------------- /db/migrate/20171102152234_add_user_agent_to_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20171102152234_add_user_agent_to_items.rb -------------------------------------------------------------------------------- /db/migrate/20180125022306_make_exts_daily.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20180125022306_make_exts_daily.rb -------------------------------------------------------------------------------- /db/migrate/20180218153714_add_content_type_index_to_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20180218153714_add_content_type_index_to_items.rb -------------------------------------------------------------------------------- /db/migrate/20180506160552_create_extension_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20180506160552_create_extension_settings.rb -------------------------------------------------------------------------------- /db/migrate/20180506170854_make_revisions_realtime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20180506170854_make_revisions_realtime.rb -------------------------------------------------------------------------------- /db/migrate/20190315163954_add_user_agent_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20190315163954_add_user_agent_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20190525212549_add_lockout_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20190525212549_add_lockout_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20191229224131_add_items_key_id_to_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20191229224131_add_items_key_id_to_items.rb -------------------------------------------------------------------------------- /db/migrate/20200220201723_add_better_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200220201723_add_better_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20200328222807_add_items_deleted_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200328222807_add_items_deleted_index.rb -------------------------------------------------------------------------------- /db/migrate/20200410020904_create_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200410020904_create_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20200601101128_add_item_revisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200601101128_add_item_revisions.rb -------------------------------------------------------------------------------- /db/migrate/20200605085931_add_duplicate_of_to_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200605085931_add_duplicate_of_to_items.rb -------------------------------------------------------------------------------- /db/migrate/20200913150251_add_access_token_expiration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200913150251_add_access_token_expiration.rb -------------------------------------------------------------------------------- /db/migrate/20200916205444_add_key_param_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20200916205444_add_key_param_fields.rb -------------------------------------------------------------------------------- /db/migrate/20201001191834_add_item_uuid_to_revisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201001191834_add_item_uuid_to_revisions.rb -------------------------------------------------------------------------------- /db/migrate/20201002095431_add_revisions_creation_date_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201002095431_add_revisions_creation_date_index.rb -------------------------------------------------------------------------------- /db/migrate/20201002113048_fix_creation_date_values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201002113048_fix_creation_date_values.rb -------------------------------------------------------------------------------- /db/migrate/20201004040050_change_tokens_to_hashed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201004040050_change_tokens_to_hashed.rb -------------------------------------------------------------------------------- /db/migrate/20201007160717_add_index_revisions_item_uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201007160717_add_index_revisions_item_uuid.rb -------------------------------------------------------------------------------- /db/migrate/20201030072643_add_index_revisions_deleting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201030072643_add_index_revisions_deleting.rb -------------------------------------------------------------------------------- /db/migrate/20201030072917_add_index_item_revisions_deleting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201030072917_add_index_item_revisions_deleting.rb -------------------------------------------------------------------------------- /db/migrate/20201112082421_drop_index_revisions_deleting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201112082421_drop_index_revisions_deleting.rb -------------------------------------------------------------------------------- /db/migrate/20201112082430_drop_index_item_revisions_deleting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20201112082430_drop_index_item_revisions_deleting.rb -------------------------------------------------------------------------------- /db/migrate/20210107122837_create_revoked_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20210107122837_create_revoked_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20210115151952_add_received_to_revoked_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20210115151952_add_received_to_revoked_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20210317134106_add_integer_timestamps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20210317134106_add_integer_timestamps.rb -------------------------------------------------------------------------------- /db/migrate/20210317143819_add_integer_timestamps_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/migrate/20210317143819_add_integer_timestamps_index.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/db/schema.rb -------------------------------------------------------------------------------- /docker-compose.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker-compose.development.yml -------------------------------------------------------------------------------- /docker-compose.raspberry-pi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker-compose.raspberry-pi.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/api-gateway.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker/api-gateway.env.sample -------------------------------------------------------------------------------- /docker/auth.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker/auth.env.sample -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/syncing-server-js.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/docker/syncing-server-js.env.sample -------------------------------------------------------------------------------- /lib/sync_engine/2016_12_15/sync_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/2016_12_15/sync_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/2016_12_15/user_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/2016_12_15/user_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/2019_05_20/sync_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/2019_05_20/sync_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/2019_05_20/user_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/2019_05_20/user_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/2020_01_15/sync_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/2020_01_15/sync_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/2020_01_15/user_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/2020_01_15/user_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/abstract/sync_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/abstract/sync_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/abstract/user_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/abstract/user_manager.rb -------------------------------------------------------------------------------- /lib/sync_engine/jwt_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/sync_engine/jwt_helper.rb -------------------------------------------------------------------------------- /lib/tasks/migrate_ignore_concurrent.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/tasks/migrate_ignore_concurrent.rake -------------------------------------------------------------------------------- /lib/tasks/perform_daily_backup_jobs.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/lib/tasks/perform_daily_backup_jobs.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/android-chrome-384x384.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/manifest.json -------------------------------------------------------------------------------- /public/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/public/robots.txt -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/server.sh -------------------------------------------------------------------------------- /spec/controllers/admin/admin_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/controllers/admin/admin_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/auth_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/controllers/api/auth_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/controllers/api/items_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/revisions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/controllers/api/revisions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/api/sessions_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/controllers/api/sessions_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/extension_settings_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/controllers/extension_settings_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/item_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/factories/item_revision.rb -------------------------------------------------------------------------------- /spec/factories/items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/factories/items.rb -------------------------------------------------------------------------------- /spec/factories/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/factories/revision.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/jobs/account_cleanup_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/jobs/account_cleanup_job.rb -------------------------------------------------------------------------------- /spec/jobs/duplicate_revisions_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/jobs/duplicate_revisions_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/extension_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/jobs/extension_job_spec.rb -------------------------------------------------------------------------------- /spec/models/item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/models/item_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/homes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/requests/homes_spec.rb -------------------------------------------------------------------------------- /spec/services/sns_publisher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/services/sns_publisher_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/spec/support/helpers.rb -------------------------------------------------------------------------------- /wait-for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardnotes/syncing-server/HEAD/wait-for.sh --------------------------------------------------------------------------------