├── .dockerignore ├── .formatter.exs ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.org ├── assets ├── .babelrc ├── css │ ├── app.scss │ ├── bookmarks.scss │ ├── browsers.scss │ ├── colors.scss │ ├── fonts.scss │ ├── navigation.scss │ ├── notifications.scss │ ├── phoenix.css │ ├── reading_lists.scss │ └── settings.scss ├── fonts │ ├── Jost-100-Hairline.ttf │ ├── Jost-100-HairlineItalic.ttf │ ├── Jost-200-Thin.ttf │ ├── Jost-200-ThinItalic.ttf │ ├── Jost-300-Light.ttf │ ├── Jost-300-LightItalic.ttf │ ├── Jost-400-Book.ttf │ ├── Jost-400-BookItalic.ttf │ ├── Jost-500-Medium.ttf │ ├── Jost-500-MediumItalic.ttf │ ├── Jost-600-Semi.ttf │ ├── Jost-600-SemiItalic.ttf │ ├── Jost-700-Bold.ttf │ ├── Jost-700-BoldItalic.ttf │ ├── Jost-800-Heavy.ttf │ ├── Jost-800-HeavyItalic.ttf │ ├── Jost-900-Black.ttf │ └── Jost-900-BlackItalic.ttf ├── js │ ├── account.js │ ├── app.js │ ├── bookmarks.js │ ├── browsers.js │ ├── encryption.js │ ├── lists.js │ ├── registration_new.js │ ├── reset_password_edit.js │ ├── session_new.js │ └── socket.js ├── package-lock.json ├── package.json ├── static │ ├── favicon.ico │ ├── images │ │ ├── bookmarks.png │ │ ├── brave.png │ │ ├── browsers.png │ │ ├── chrome.png │ │ ├── design.svg │ │ ├── edge.png │ │ ├── eye.svg │ │ ├── favicon.png │ │ ├── firefox.png │ │ ├── lists.png │ │ ├── omnibox.png │ │ ├── opera.png │ │ ├── padlock.svg │ │ ├── sendlink.png │ │ ├── tab.png │ │ ├── tab.svg │ │ └── vivaldi.png │ └── robots.txt └── webpack.config.js ├── config ├── config.exs ├── dev.exs ├── prod.exs ├── runtime.exs └── test.exs ├── devenv.lock ├── devenv.nix ├── devenv.yaml ├── docker-compose.yml ├── domovik.service ├── lib ├── domovik.ex ├── domovik │ ├── application.ex │ ├── bookmarks.ex │ ├── bookmarks │ │ └── bookmark.ex │ ├── reading_list.ex │ ├── reading_list │ │ ├── link.ex │ │ └── list.ex │ ├── repo.ex │ ├── sync.ex │ ├── sync │ │ ├── browser.ex │ │ ├── command.ex │ │ └── tab.ex │ └── users │ │ ├── user.ex │ │ └── users.ex ├── domovik_web.ex └── domovik_web │ ├── api_auth_error_handler.ex │ ├── api_auth_plug.ex │ ├── channels │ └── user_socket.ex │ ├── controllers │ ├── api │ │ ├── bookmarks_controller.ex │ │ ├── browser_controller.ex │ │ ├── list_controller.ex │ │ └── session_controller.ex │ ├── bookmarks_controller.ex │ ├── browser_controller.ex │ ├── fallback_controller.ex │ ├── list_controller.ex │ ├── page_controller.ex │ ├── stripe_controller.ex │ └── user_controller.ex │ ├── endpoint.ex │ ├── gettext.ex │ ├── plugs │ ├── stripe_webhooks_plug.ex │ └── subscription_plug.ex │ ├── pow │ ├── mailer.ex │ └── routes.ex │ ├── router.ex │ ├── telemetry.ex │ ├── templates │ ├── bookmarks │ │ └── index.html.heex │ ├── browser │ │ └── index.html.heex │ ├── email │ │ ├── payment_failed.html.heex │ │ ├── payment_failed.text.eex │ │ ├── trial_end.html.heex │ │ └── trial_end.text.eex │ ├── layout │ │ ├── app.html.heex │ │ └── email.html.heex │ ├── list │ │ └── index.html.heex │ ├── pow │ │ ├── registration │ │ │ ├── edit.html.heex │ │ │ └── new.html.heex │ │ └── session │ │ │ └── new.html.heex │ ├── pow_email_confirmation │ │ └── mailer │ │ │ ├── email_confirmation.html.heex │ │ │ └── email_confirmation.text.eex │ ├── pow_reset_password │ │ ├── mailer │ │ │ ├── reset_password.html.heex │ │ │ └── reset_password.text.eex │ │ └── reset_password │ │ │ ├── edit.html.heex │ │ │ └── new.html.heex │ └── user │ │ ├── registered.html.heex │ │ ├── settings.html.heex │ │ └── subscribe.html.heex │ └── views │ ├── api │ ├── bookmarks_view.ex │ ├── lists_view.ex │ └── sync_view.ex │ ├── bookmarks_view.ex │ ├── browser_view.ex │ ├── changeset_view.ex │ ├── email_view.ex │ ├── error_helpers.ex │ ├── error_view.ex │ ├── helpers.ex │ ├── layout_view.ex │ ├── list_view.ex │ ├── page_view.ex │ ├── pow │ ├── registration_view.ex │ └── session_view.ex │ └── user_view.ex ├── logos ├── domovik-circle-empty.svg ├── domovik-square-empty.svg ├── domovik-square-filled.svg ├── domovik.svg ├── logo.png └── logo.svg ├── mix.exs ├── mix.lock ├── priv ├── gettext │ ├── en │ │ └── LC_MESSAGES │ │ │ └── errors.po │ └── errors.pot └── repo │ ├── migrations │ ├── .formatter.exs │ ├── 20200428100738_create_users.exs │ ├── 20200428114347_create_browsers.exs │ ├── 20200429185344_create_tabs.exs │ ├── 20200501111604_add_active_to_tabs.exs │ ├── 20200504160330_add_pinned_to_tabs.exs │ ├── 20200506162307_add_window_to_tabs.exs │ ├── 20200506214921_create_command.exs │ ├── 20200507165859_create_reading_list.exs │ ├── 20200513131721_create_bookmarks.exs │ ├── 20200719200450_link_stripe.exs │ ├── 20200723064758_user_want_emails.exs │ ├── 20200723205913_subscription_active.exs │ ├── 20210220090047_timestamp_to_bigint.exs │ ├── 20210220111941_tab_title_to_text.exs │ ├── 20210224010353_extend_link.exs │ ├── 20210501171130_add_pow_email_confirmation_to_users.exs │ └── 20210506111907_tab_add_session_id.exs │ └── seeds.exs └── test ├── domovik └── sync_test.exs ├── domovik_web ├── api_auth_plug_test.exs ├── controllers │ ├── api │ │ ├── bookmark_controller_test.exs │ │ ├── browser_controller_test.exs │ │ └── session_controller_test.exs │ ├── browser_controller_test.exs │ └── page_controller_test.exs └── views │ ├── error_view_test.exs │ ├── layout_view_test.exs │ └── page_view_test.exs ├── support ├── channel_case.ex ├── conn_case.ex └── data_case.ex └── test_helper.exs /.dockerignore: -------------------------------------------------------------------------------- 1 | _build 2 | deps 3 | assets/node_modules 4 | test 5 | -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/README.org -------------------------------------------------------------------------------- /assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/.babelrc -------------------------------------------------------------------------------- /assets/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/app.scss -------------------------------------------------------------------------------- /assets/css/bookmarks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/bookmarks.scss -------------------------------------------------------------------------------- /assets/css/browsers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/browsers.scss -------------------------------------------------------------------------------- /assets/css/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/colors.scss -------------------------------------------------------------------------------- /assets/css/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/fonts.scss -------------------------------------------------------------------------------- /assets/css/navigation.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/notifications.scss -------------------------------------------------------------------------------- /assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/phoenix.css -------------------------------------------------------------------------------- /assets/css/reading_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/reading_lists.scss -------------------------------------------------------------------------------- /assets/css/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/css/settings.scss -------------------------------------------------------------------------------- /assets/fonts/Jost-100-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-100-Hairline.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-100-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-100-HairlineItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-200-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-200-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-200-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-200-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-300-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-300-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-300-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-300-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-400-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-400-Book.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-400-BookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-400-BookItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-500-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-500-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-500-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-500-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-600-Semi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-600-Semi.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-600-SemiItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-600-SemiItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-700-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-700-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-700-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-700-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-800-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-800-Heavy.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-800-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-800-HeavyItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-900-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-900-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Jost-900-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/fonts/Jost-900-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/js/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/account.js -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/bookmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/bookmarks.js -------------------------------------------------------------------------------- /assets/js/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/browsers.js -------------------------------------------------------------------------------- /assets/js/encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/encryption.js -------------------------------------------------------------------------------- /assets/js/lists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/lists.js -------------------------------------------------------------------------------- /assets/js/registration_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/registration_new.js -------------------------------------------------------------------------------- /assets/js/reset_password_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/reset_password_edit.js -------------------------------------------------------------------------------- /assets/js/session_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/session_new.js -------------------------------------------------------------------------------- /assets/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/js/socket.js -------------------------------------------------------------------------------- /assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/package-lock.json -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/package.json -------------------------------------------------------------------------------- /assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/favicon.ico -------------------------------------------------------------------------------- /assets/static/images/bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/bookmarks.png -------------------------------------------------------------------------------- /assets/static/images/brave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/brave.png -------------------------------------------------------------------------------- /assets/static/images/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/browsers.png -------------------------------------------------------------------------------- /assets/static/images/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/chrome.png -------------------------------------------------------------------------------- /assets/static/images/design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/design.svg -------------------------------------------------------------------------------- /assets/static/images/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/edge.png -------------------------------------------------------------------------------- /assets/static/images/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/eye.svg -------------------------------------------------------------------------------- /assets/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/favicon.png -------------------------------------------------------------------------------- /assets/static/images/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/firefox.png -------------------------------------------------------------------------------- /assets/static/images/lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/lists.png -------------------------------------------------------------------------------- /assets/static/images/omnibox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/omnibox.png -------------------------------------------------------------------------------- /assets/static/images/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/opera.png -------------------------------------------------------------------------------- /assets/static/images/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/padlock.svg -------------------------------------------------------------------------------- /assets/static/images/sendlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/sendlink.png -------------------------------------------------------------------------------- /assets/static/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/tab.png -------------------------------------------------------------------------------- /assets/static/images/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/tab.svg -------------------------------------------------------------------------------- /assets/static/images/vivaldi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/images/vivaldi.png -------------------------------------------------------------------------------- /assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/static/robots.txt -------------------------------------------------------------------------------- /assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/assets/webpack.config.js -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/config/prod.exs -------------------------------------------------------------------------------- /config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/config/runtime.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/config/test.exs -------------------------------------------------------------------------------- /devenv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/devenv.lock -------------------------------------------------------------------------------- /devenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/devenv.nix -------------------------------------------------------------------------------- /devenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/devenv.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /domovik.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/domovik.service -------------------------------------------------------------------------------- /lib/domovik.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik.ex -------------------------------------------------------------------------------- /lib/domovik/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/application.ex -------------------------------------------------------------------------------- /lib/domovik/bookmarks.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/bookmarks.ex -------------------------------------------------------------------------------- /lib/domovik/bookmarks/bookmark.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/bookmarks/bookmark.ex -------------------------------------------------------------------------------- /lib/domovik/reading_list.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/reading_list.ex -------------------------------------------------------------------------------- /lib/domovik/reading_list/link.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/reading_list/link.ex -------------------------------------------------------------------------------- /lib/domovik/reading_list/list.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/reading_list/list.ex -------------------------------------------------------------------------------- /lib/domovik/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/repo.ex -------------------------------------------------------------------------------- /lib/domovik/sync.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/sync.ex -------------------------------------------------------------------------------- /lib/domovik/sync/browser.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/sync/browser.ex -------------------------------------------------------------------------------- /lib/domovik/sync/command.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/sync/command.ex -------------------------------------------------------------------------------- /lib/domovik/sync/tab.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/sync/tab.ex -------------------------------------------------------------------------------- /lib/domovik/users/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/users/user.ex -------------------------------------------------------------------------------- /lib/domovik/users/users.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik/users/users.ex -------------------------------------------------------------------------------- /lib/domovik_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web.ex -------------------------------------------------------------------------------- /lib/domovik_web/api_auth_error_handler.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/api_auth_error_handler.ex -------------------------------------------------------------------------------- /lib/domovik_web/api_auth_plug.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/api_auth_plug.ex -------------------------------------------------------------------------------- /lib/domovik_web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/channels/user_socket.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/api/bookmarks_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/api/bookmarks_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/api/browser_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/api/browser_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/api/list_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/api/list_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/api/session_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/api/session_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/bookmarks_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/bookmarks_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/browser_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/browser_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/fallback_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/fallback_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/list_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/list_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/page_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/page_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/stripe_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/stripe_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/controllers/user_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/controllers/user_controller.ex -------------------------------------------------------------------------------- /lib/domovik_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/endpoint.ex -------------------------------------------------------------------------------- /lib/domovik_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/gettext.ex -------------------------------------------------------------------------------- /lib/domovik_web/plugs/stripe_webhooks_plug.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/plugs/stripe_webhooks_plug.ex -------------------------------------------------------------------------------- /lib/domovik_web/plugs/subscription_plug.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/plugs/subscription_plug.ex -------------------------------------------------------------------------------- /lib/domovik_web/pow/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/pow/mailer.ex -------------------------------------------------------------------------------- /lib/domovik_web/pow/routes.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/pow/routes.ex -------------------------------------------------------------------------------- /lib/domovik_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/router.ex -------------------------------------------------------------------------------- /lib/domovik_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/telemetry.ex -------------------------------------------------------------------------------- /lib/domovik_web/templates/bookmarks/index.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/bookmarks/index.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/browser/index.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/browser/index.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/email/payment_failed.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/email/payment_failed.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/email/payment_failed.text.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/email/payment_failed.text.eex -------------------------------------------------------------------------------- /lib/domovik_web/templates/email/trial_end.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/email/trial_end.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/email/trial_end.text.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/email/trial_end.text.eex -------------------------------------------------------------------------------- /lib/domovik_web/templates/layout/app.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/layout/app.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/layout/email.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/layout/email.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/list/index.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/list/index.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow/registration/edit.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow/registration/edit.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow/registration/new.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow/registration/new.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow/session/new.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow/session/new.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow_email_confirmation/mailer/email_confirmation.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow_email_confirmation/mailer/email_confirmation.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow_email_confirmation/mailer/email_confirmation.text.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow_email_confirmation/mailer/email_confirmation.text.eex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow_reset_password/mailer/reset_password.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow_reset_password/mailer/reset_password.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow_reset_password/mailer/reset_password.text.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow_reset_password/mailer/reset_password.text.eex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow_reset_password/reset_password/edit.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow_reset_password/reset_password/edit.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/pow_reset_password/reset_password/new.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/pow_reset_password/reset_password/new.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/user/registered.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/user/registered.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/user/settings.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/user/settings.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/templates/user/subscribe.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/templates/user/subscribe.html.heex -------------------------------------------------------------------------------- /lib/domovik_web/views/api/bookmarks_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/api/bookmarks_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/api/lists_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/api/lists_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/api/sync_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/api/sync_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/bookmarks_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/bookmarks_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/browser_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/browser_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/changeset_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/changeset_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/email_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/email_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/error_helpers.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/error_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/helpers.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/layout_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/list_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/list_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/page_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/pow/registration_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/pow/registration_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/pow/session_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/pow/session_view.ex -------------------------------------------------------------------------------- /lib/domovik_web/views/user_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/lib/domovik_web/views/user_view.ex -------------------------------------------------------------------------------- /logos/domovik-circle-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/logos/domovik-circle-empty.svg -------------------------------------------------------------------------------- /logos/domovik-square-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/logos/domovik-square-empty.svg -------------------------------------------------------------------------------- /logos/domovik-square-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/logos/domovik-square-filled.svg -------------------------------------------------------------------------------- /logos/domovik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/logos/domovik.svg -------------------------------------------------------------------------------- /logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/logos/logo.png -------------------------------------------------------------------------------- /logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/logos/logo.svg -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/mix.lock -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/gettext/errors.pot -------------------------------------------------------------------------------- /priv/repo/migrations/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/.formatter.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200428100738_create_users.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200428100738_create_users.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200428114347_create_browsers.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200428114347_create_browsers.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200429185344_create_tabs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200429185344_create_tabs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200501111604_add_active_to_tabs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200501111604_add_active_to_tabs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200504160330_add_pinned_to_tabs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200504160330_add_pinned_to_tabs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200506162307_add_window_to_tabs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200506162307_add_window_to_tabs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200506214921_create_command.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200506214921_create_command.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200507165859_create_reading_list.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200507165859_create_reading_list.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200513131721_create_bookmarks.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200513131721_create_bookmarks.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200719200450_link_stripe.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200719200450_link_stripe.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200723064758_user_want_emails.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200723064758_user_want_emails.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20200723205913_subscription_active.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20200723205913_subscription_active.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210220090047_timestamp_to_bigint.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20210220090047_timestamp_to_bigint.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210220111941_tab_title_to_text.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20210220111941_tab_title_to_text.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210224010353_extend_link.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20210224010353_extend_link.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210501171130_add_pow_email_confirmation_to_users.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20210501171130_add_pow_email_confirmation_to_users.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210506111907_tab_add_session_id.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/migrations/20210506111907_tab_add_session_id.exs -------------------------------------------------------------------------------- /priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/priv/repo/seeds.exs -------------------------------------------------------------------------------- /test/domovik/sync_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik/sync_test.exs -------------------------------------------------------------------------------- /test/domovik_web/api_auth_plug_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/api_auth_plug_test.exs -------------------------------------------------------------------------------- /test/domovik_web/controllers/api/bookmark_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/controllers/api/bookmark_controller_test.exs -------------------------------------------------------------------------------- /test/domovik_web/controllers/api/browser_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/controllers/api/browser_controller_test.exs -------------------------------------------------------------------------------- /test/domovik_web/controllers/api/session_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/controllers/api/session_controller_test.exs -------------------------------------------------------------------------------- /test/domovik_web/controllers/browser_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/controllers/browser_controller_test.exs -------------------------------------------------------------------------------- /test/domovik_web/controllers/page_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/controllers/page_controller_test.exs -------------------------------------------------------------------------------- /test/domovik_web/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/views/error_view_test.exs -------------------------------------------------------------------------------- /test/domovik_web/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/views/layout_view_test.exs -------------------------------------------------------------------------------- /test/domovik_web/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/domovik_web/views/page_view_test.exs -------------------------------------------------------------------------------- /test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/support/channel_case.ex -------------------------------------------------------------------------------- /test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/support/conn_case.ex -------------------------------------------------------------------------------- /test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domovikapp/domovik-server/HEAD/test/support/data_case.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(Domovik.Repo, :manual) 3 | --------------------------------------------------------------------------------