├── .eslintrc.js ├── .formatter.exs ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.md ├── Procfile ├── README.md ├── assets ├── .babelrc ├── auth │ └── index.js ├── components │ ├── App.vue │ ├── Conversation.vue │ ├── Messagerie.vue │ ├── auth │ │ ├── Login.vue │ │ ├── Logout.vue │ │ └── Signup.vue │ └── utils │ │ ├── Welcome.vue │ │ ├── optionMenuListener.js │ │ └── resizeCapture.js ├── js │ ├── app.js │ ├── helpers │ │ └── getIndexes.js │ ├── main.js │ ├── router.js │ └── store.js ├── package-lock.json ├── package.json ├── priv │ └── static │ │ ├── favicon.ico │ │ ├── images │ │ ├── message.svg │ │ ├── svg-icons │ │ │ ├── message.svg │ │ │ └── status.svg │ │ └── yo.jpg │ │ └── robots.txt ├── static │ ├── favicon.ico │ ├── images │ │ ├── message.svg │ │ ├── svg-icons │ │ │ ├── message.svg │ │ │ └── status.svg │ │ └── yo.jpg │ └── robots.txt ├── stats.json ├── vue.config.js └── webpack.config.js ├── config ├── config.exs ├── dev.exs ├── prod.exs ├── prod.secret.exs └── test.exs ├── coveralls.json ├── documentation └── screenshots │ └── whatchat_screen_1.png ├── elixir_buildpack.config ├── lib ├── whatChat.ex ├── whatChat │ ├── accounts │ │ ├── accounts.ex │ │ └── user.ex │ ├── application.ex │ ├── discussions │ │ ├── conversation.ex │ │ ├── conversation_user.ex │ │ ├── discussions.ex │ │ └── message.ex │ └── repo.ex ├── whatChat_web.ex └── whatChat_web │ ├── channels │ ├── conversation_channel.ex │ ├── user_socket.ex │ ├── users_channel.ex │ └── utils │ │ └── presences │ │ ├── chat_presence.ex │ │ └── conversation_presence.ex │ ├── controllers │ ├── SessionController.ex │ ├── conversation │ │ └── conversation_controller.ex │ ├── fallback_controller.ex │ ├── page_controller.ex │ ├── plugs │ │ └── require_auth.ex │ └── user_controller.ex │ ├── endpoint.ex │ ├── gettext.ex │ ├── router.ex │ ├── templates │ ├── layout │ │ └── app.html.eex │ └── page │ │ └── index.html.eex │ └── views │ ├── changeset_view.ex │ ├── error_helpers.ex │ ├── error_view.ex │ ├── layout_view.ex │ ├── page_view.ex │ ├── session_view.ex │ └── user_view.ex ├── mix.exs ├── mix.lock ├── phoenix_static_buildpack.config ├── priv ├── gettext │ ├── en │ │ └── LC_MESSAGES │ │ │ └── errors.po │ └── errors.pot └── repo │ ├── migrations │ ├── .formatter.exs │ ├── .gitkeep │ ├── 20181127192211_create_users.exs │ ├── 20190118154524_create_conversations.exs │ ├── 20190118155502_create_conversation_user.exs │ └── 20190118155833_create_messages.exs │ └── seeds.exs └── test ├── support ├── channel_case.ex ├── conn_case.ex └── data_case.ex ├── test_helper.exs ├── whatChat ├── accounts │ └── accounts_test.exs └── discussions │ └── discussions_test.exs └── whatChat_web ├── controllers ├── page_controller_test.exs ├── session_controller_test.exs └── user_controller_test.exs └── views ├── error_view_test.exs ├── layout_view_test.exs └── page_view_test.exs /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: mix phx.server -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/README.md -------------------------------------------------------------------------------- /assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/.babelrc -------------------------------------------------------------------------------- /assets/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/auth/index.js -------------------------------------------------------------------------------- /assets/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/App.vue -------------------------------------------------------------------------------- /assets/components/Conversation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/Conversation.vue -------------------------------------------------------------------------------- /assets/components/Messagerie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/Messagerie.vue -------------------------------------------------------------------------------- /assets/components/auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/auth/Login.vue -------------------------------------------------------------------------------- /assets/components/auth/Logout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/auth/Logout.vue -------------------------------------------------------------------------------- /assets/components/auth/Signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/auth/Signup.vue -------------------------------------------------------------------------------- /assets/components/utils/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/utils/Welcome.vue -------------------------------------------------------------------------------- /assets/components/utils/optionMenuListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/utils/optionMenuListener.js -------------------------------------------------------------------------------- /assets/components/utils/resizeCapture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/components/utils/resizeCapture.js -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/helpers/getIndexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/js/helpers/getIndexes.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/js/router.js -------------------------------------------------------------------------------- /assets/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/js/store.js -------------------------------------------------------------------------------- /assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/package-lock.json -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/package.json -------------------------------------------------------------------------------- /assets/priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/priv/static/favicon.ico -------------------------------------------------------------------------------- /assets/priv/static/images/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/priv/static/images/message.svg -------------------------------------------------------------------------------- /assets/priv/static/images/svg-icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/priv/static/images/svg-icons/message.svg -------------------------------------------------------------------------------- /assets/priv/static/images/svg-icons/status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/priv/static/images/svg-icons/status.svg -------------------------------------------------------------------------------- /assets/priv/static/images/yo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/priv/static/images/yo.jpg -------------------------------------------------------------------------------- /assets/priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/priv/static/robots.txt -------------------------------------------------------------------------------- /assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/static/favicon.ico -------------------------------------------------------------------------------- /assets/static/images/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/static/images/message.svg -------------------------------------------------------------------------------- /assets/static/images/svg-icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/static/images/svg-icons/message.svg -------------------------------------------------------------------------------- /assets/static/images/svg-icons/status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/static/images/svg-icons/status.svg -------------------------------------------------------------------------------- /assets/static/images/yo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/static/images/yo.jpg -------------------------------------------------------------------------------- /assets/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/static/robots.txt -------------------------------------------------------------------------------- /assets/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/stats.json -------------------------------------------------------------------------------- /assets/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/vue.config.js -------------------------------------------------------------------------------- /assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/assets/webpack.config.js -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/config/prod.exs -------------------------------------------------------------------------------- /config/prod.secret.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/config/prod.secret.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/config/test.exs -------------------------------------------------------------------------------- /coveralls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/coveralls.json -------------------------------------------------------------------------------- /documentation/screenshots/whatchat_screen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/documentation/screenshots/whatchat_screen_1.png -------------------------------------------------------------------------------- /elixir_buildpack.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/elixir_buildpack.config -------------------------------------------------------------------------------- /lib/whatChat.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat.ex -------------------------------------------------------------------------------- /lib/whatChat/accounts/accounts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/accounts/accounts.ex -------------------------------------------------------------------------------- /lib/whatChat/accounts/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/accounts/user.ex -------------------------------------------------------------------------------- /lib/whatChat/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/application.ex -------------------------------------------------------------------------------- /lib/whatChat/discussions/conversation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/discussions/conversation.ex -------------------------------------------------------------------------------- /lib/whatChat/discussions/conversation_user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/discussions/conversation_user.ex -------------------------------------------------------------------------------- /lib/whatChat/discussions/discussions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/discussions/discussions.ex -------------------------------------------------------------------------------- /lib/whatChat/discussions/message.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/discussions/message.ex -------------------------------------------------------------------------------- /lib/whatChat/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat/repo.ex -------------------------------------------------------------------------------- /lib/whatChat_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web.ex -------------------------------------------------------------------------------- /lib/whatChat_web/channels/conversation_channel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/channels/conversation_channel.ex -------------------------------------------------------------------------------- /lib/whatChat_web/channels/user_socket.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/channels/user_socket.ex -------------------------------------------------------------------------------- /lib/whatChat_web/channels/users_channel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/channels/users_channel.ex -------------------------------------------------------------------------------- /lib/whatChat_web/channels/utils/presences/chat_presence.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/channels/utils/presences/chat_presence.ex -------------------------------------------------------------------------------- /lib/whatChat_web/channels/utils/presences/conversation_presence.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/channels/utils/presences/conversation_presence.ex -------------------------------------------------------------------------------- /lib/whatChat_web/controllers/SessionController.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/controllers/SessionController.ex -------------------------------------------------------------------------------- /lib/whatChat_web/controllers/conversation/conversation_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/controllers/conversation/conversation_controller.ex -------------------------------------------------------------------------------- /lib/whatChat_web/controllers/fallback_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/controllers/fallback_controller.ex -------------------------------------------------------------------------------- /lib/whatChat_web/controllers/page_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/controllers/page_controller.ex -------------------------------------------------------------------------------- /lib/whatChat_web/controllers/plugs/require_auth.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/controllers/plugs/require_auth.ex -------------------------------------------------------------------------------- /lib/whatChat_web/controllers/user_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/controllers/user_controller.ex -------------------------------------------------------------------------------- /lib/whatChat_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/endpoint.ex -------------------------------------------------------------------------------- /lib/whatChat_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/gettext.ex -------------------------------------------------------------------------------- /lib/whatChat_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/router.ex -------------------------------------------------------------------------------- /lib/whatChat_web/templates/layout/app.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/templates/layout/app.html.eex -------------------------------------------------------------------------------- /lib/whatChat_web/templates/page/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/templates/page/index.html.eex -------------------------------------------------------------------------------- /lib/whatChat_web/views/changeset_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/changeset_view.ex -------------------------------------------------------------------------------- /lib/whatChat_web/views/error_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/error_helpers.ex -------------------------------------------------------------------------------- /lib/whatChat_web/views/error_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/error_view.ex -------------------------------------------------------------------------------- /lib/whatChat_web/views/layout_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/layout_view.ex -------------------------------------------------------------------------------- /lib/whatChat_web/views/page_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/page_view.ex -------------------------------------------------------------------------------- /lib/whatChat_web/views/session_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/session_view.ex -------------------------------------------------------------------------------- /lib/whatChat_web/views/user_view.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/lib/whatChat_web/views/user_view.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/mix.lock -------------------------------------------------------------------------------- /phoenix_static_buildpack.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/phoenix_static_buildpack.config -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/gettext/errors.pot -------------------------------------------------------------------------------- /priv/repo/migrations/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/repo/migrations/.formatter.exs -------------------------------------------------------------------------------- /priv/repo/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /priv/repo/migrations/20181127192211_create_users.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/repo/migrations/20181127192211_create_users.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20190118154524_create_conversations.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/repo/migrations/20190118154524_create_conversations.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20190118155502_create_conversation_user.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/repo/migrations/20190118155502_create_conversation_user.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20190118155833_create_messages.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/repo/migrations/20190118155833_create_messages.exs -------------------------------------------------------------------------------- /priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/priv/repo/seeds.exs -------------------------------------------------------------------------------- /test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/support/channel_case.ex -------------------------------------------------------------------------------- /test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/support/conn_case.ex -------------------------------------------------------------------------------- /test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/support/data_case.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(WhatChat.Repo, :manual) 3 | -------------------------------------------------------------------------------- /test/whatChat/accounts/accounts_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat/accounts/accounts_test.exs -------------------------------------------------------------------------------- /test/whatChat/discussions/discussions_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat/discussions/discussions_test.exs -------------------------------------------------------------------------------- /test/whatChat_web/controllers/page_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat_web/controllers/page_controller_test.exs -------------------------------------------------------------------------------- /test/whatChat_web/controllers/session_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat_web/controllers/session_controller_test.exs -------------------------------------------------------------------------------- /test/whatChat_web/controllers/user_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat_web/controllers/user_controller_test.exs -------------------------------------------------------------------------------- /test/whatChat_web/views/error_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat_web/views/error_view_test.exs -------------------------------------------------------------------------------- /test/whatChat_web/views/layout_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat_web/views/layout_view_test.exs -------------------------------------------------------------------------------- /test/whatChat_web/views/page_view_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValdesChe/WhatChat/HEAD/test/whatChat_web/views/page_view_test.exs --------------------------------------------------------------------------------