├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── login │ │ │ ├── login1.woff │ │ │ ├── login2.woff │ │ │ ├── login3.woff │ │ │ └── login4.woff │ │ ├── main │ │ │ ├── add-file.svg │ │ │ ├── blue.png │ │ │ ├── check.svg │ │ │ ├── clear.png │ │ │ ├── create-server.png │ │ │ ├── empty-left.png │ │ │ ├── empty-right.png │ │ │ ├── exclamation.svg │ │ │ ├── font │ │ │ │ ├── fat.woff │ │ │ │ ├── fatter.woff │ │ │ │ ├── middle.woff │ │ │ │ ├── thin.woff │ │ │ │ └── thinner.woff │ │ │ ├── friend-x.svg │ │ │ ├── friendless.svg │ │ │ ├── hangup.svg │ │ │ ├── headphones.svg │ │ │ ├── join-server.png │ │ │ ├── long logo.svg │ │ │ ├── online-empty.svg │ │ │ ├── or.svg │ │ │ ├── pending-empty.svg │ │ │ ├── personal.svg │ │ │ ├── search.svg │ │ │ ├── server-modal-left.png │ │ │ ├── server-modal-right.png │ │ │ ├── welcome-comp.svg │ │ │ ├── welcome-phone.svg │ │ │ ├── white_logo.png │ │ │ ├── x-button.svg │ │ │ └── x-user.svg │ │ └── splash │ │ │ ├── discor-font.woff │ │ │ ├── discors-font-bold.woff │ │ │ └── p-font.woff │ ├── javascripts │ │ ├── application.js │ │ ├── cable.js │ │ └── channels │ │ │ ├── .keep │ │ │ ├── chat.coffee │ │ │ └── voice.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── channel_modal.scss │ │ ├── chrome.scss │ │ ├── css_reset.css │ │ ├── edge.scss │ │ ├── edit_user.scss │ │ ├── firefox.scss │ │ ├── friends.scss │ │ ├── loading.scss │ │ ├── login.scss │ │ ├── main.scss │ │ ├── messages.scss │ │ ├── server_modal.scss │ │ ├── spash.scss │ │ └── user_popup.scss ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ ├── chat_channel.rb │ ├── notifications_channel.rb │ └── voice_channel.rb ├── controllers │ ├── api │ │ ├── audio_channels_controller.rb │ │ ├── channels_controller.rb │ │ ├── dm_channel_memberships_controller.rb │ │ ├── friend_requests_controller.rb │ │ ├── friends_controller.rb │ │ ├── messages_controller.rb │ │ ├── servers_controller.rb │ │ ├── sessions_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── static_pages_controller.rb ├── jobs │ ├── application_job.rb │ ├── friend_request_broadcast_job.rb │ ├── friendship_broadcast_job.rb │ └── notification_broadcast_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── audio_channel.rb │ ├── channel.rb │ ├── concerns │ │ └── .keep │ ├── dm_channel_membership.rb │ ├── friend_request.rb │ ├── friendship.rb │ ├── message.rb │ ├── server.rb │ ├── server_membership.rb │ ├── session.rb │ └── user.rb └── views │ ├── api │ ├── audio_channels │ │ ├── _audio_channel.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── channels │ │ ├── _channel.json.jbuilder │ │ ├── dm_index.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── friend_requests │ │ ├── _friend_request.json.jbuilder │ │ └── show.json.jbuilder │ ├── messages │ │ └── _message.json.jbuilder │ ├── servers │ │ ├── _server.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ └── users │ │ ├── _user.json.jbuilder │ │ ├── index.json.jbuilder │ │ ├── show.json.jbuilder │ │ └── user_data.json.jbuilder │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── static_pages │ └── root.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20190121174348_create_users.rb │ ├── 20190122185229_create_servers.rb │ ├── 20190122190214_create_server_memberships.rb │ ├── 20190123145743_create_channels.rb │ ├── 20190124162319_create_messages.rb │ ├── 20190125020020_create_dm_channel_memberships.rb │ ├── 20190126030608_create_friend_requests.rb │ ├── 20190126032316_create_friendships.rb │ ├── 20190127215251_create_sessions.rb │ ├── 20190129004713_create_voice_channels.rb │ ├── 20190129010218_change_voice_channels_to_audio_channels.rb │ ├── 20190129201658_create_active_storage_tables.active_storage.rb │ ├── 20190203031645_add_column_to_sessions.rb │ └── 20190218200301_remove_session_token_from_users.rb ├── schema.rb └── seeds.rb ├── frontend ├── actions │ ├── channel_actions.js │ ├── friends_actions.js │ ├── notification_actions.js │ ├── server_actions.js │ ├── session_actions.js │ ├── ui_actions.js │ └── voice_channel_actions.js ├── components │ ├── app.jsx │ ├── app │ │ ├── app_root.jsx │ │ ├── app_routes │ │ │ ├── friends_main.jsx │ │ │ ├── me_main.jsx │ │ │ ├── me_route.jsx │ │ │ ├── server_main.jsx │ │ │ └── server_route.jsx │ │ ├── channels │ │ │ ├── channels │ │ │ │ ├── channel.jsx │ │ │ │ ├── channels.jsx │ │ │ │ └── channels_container.jsx │ │ │ ├── create_channel_form.jsx │ │ │ ├── dm_channels │ │ │ │ ├── dm_channel.jsx │ │ │ │ ├── dm_channels.jsx │ │ │ │ └── dm_channels_container.jsx │ │ │ ├── edit_user_form.jsx │ │ │ ├── user_bar │ │ │ │ ├── user_bar.jsx │ │ │ │ └── user_bar_container.jsx │ │ │ └── voice_channels │ │ │ │ ├── voice_channel.jsx │ │ │ │ ├── voice_channels.jsx │ │ │ │ └── voice_channels_container.jsx │ │ ├── chat │ │ │ ├── chat │ │ │ │ ├── chat.jsx │ │ │ │ └── chat_container.jsx │ │ │ ├── message.jsx │ │ │ └── message_form.jsx │ │ ├── friends │ │ │ ├── friend.jsx │ │ │ ├── friends_header.jsx │ │ │ ├── friends_list │ │ │ │ ├── friends.jsx │ │ │ │ ├── friends_container.jsx │ │ │ │ └── online_friends_container.jsx │ │ │ ├── mutual_server.jsx │ │ │ └── pending_friends │ │ │ │ ├── pending_friends.jsx │ │ │ │ └── pending_friends_container.jsx │ │ ├── header │ │ │ ├── header │ │ │ │ ├── header.jsx │ │ │ │ └── header_container.jsx │ │ │ └── me_header │ │ │ │ ├── me_header.jsx │ │ │ │ └── me_header_container.jsx │ │ ├── loading_screen.jsx │ │ ├── modal │ │ │ ├── tooltip.jsx │ │ │ ├── user_popup.jsx │ │ │ └── user_popup_container.jsx │ │ ├── server_members │ │ │ ├── server_member.jsx │ │ │ └── server_members │ │ │ │ ├── server_members.jsx │ │ │ │ └── server_members_container.jsx │ │ └── servers │ │ │ ├── create_server_form.jsx │ │ │ ├── dm_notification.jsx │ │ │ ├── join_server_form.jsx │ │ │ ├── search_server_item.jsx │ │ │ ├── search_servers_form.jsx │ │ │ ├── server.jsx │ │ │ └── servers │ │ │ ├── servers.jsx │ │ │ └── servers_container.jsx │ ├── root.jsx │ ├── session_form │ │ ├── login │ │ │ ├── login_form.jsx │ │ │ └── login_form_container.jsx │ │ └── signup │ │ │ ├── signup_form.jsx │ │ │ └── signup_form_container.jsx │ └── splash │ │ ├── splash.jsx │ │ └── splash_container.jsx ├── discors.jsx ├── reducers │ ├── entities │ │ ├── channels_reducer.js │ │ ├── entities_reducer.js │ │ ├── friend_requests_reducer.js │ │ ├── friends_reducer.js │ │ ├── servers_reducer.js │ │ ├── users_reducer.js │ │ └── voice_channels_reducer.js │ ├── errors │ │ ├── channel_errors_reducer.js │ │ ├── errors_reducer.js │ │ ├── server_errors_reducer.js │ │ └── session_errors_reducer.js │ ├── loading_reducer.js │ ├── notifications │ │ ├── dm_notifications_reducer.js │ │ └── notifications_reducer.js │ ├── root_reducer.js │ ├── session_reducer.js │ └── ui_reducer.js ├── store │ └── store.js └── util │ ├── channel_api_util.js │ ├── friends_api_util.js │ ├── route_util.jsx │ ├── server_api_utl.js │ ├── session_api_util.js │ └── voice_channel_api_util.js ├── helpers └── application_helper.rb ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ └── sessions.rake ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── vendor └── .keep └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/login/login1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/login/login1.woff -------------------------------------------------------------------------------- /app/assets/images/login/login2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/login/login2.woff -------------------------------------------------------------------------------- /app/assets/images/login/login3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/login/login3.woff -------------------------------------------------------------------------------- /app/assets/images/login/login4.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/login/login4.woff -------------------------------------------------------------------------------- /app/assets/images/main/add-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/add-file.svg -------------------------------------------------------------------------------- /app/assets/images/main/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/blue.png -------------------------------------------------------------------------------- /app/assets/images/main/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/check.svg -------------------------------------------------------------------------------- /app/assets/images/main/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/clear.png -------------------------------------------------------------------------------- /app/assets/images/main/create-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/create-server.png -------------------------------------------------------------------------------- /app/assets/images/main/empty-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/empty-left.png -------------------------------------------------------------------------------- /app/assets/images/main/empty-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/empty-right.png -------------------------------------------------------------------------------- /app/assets/images/main/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/exclamation.svg -------------------------------------------------------------------------------- /app/assets/images/main/font/fat.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/font/fat.woff -------------------------------------------------------------------------------- /app/assets/images/main/font/fatter.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/font/fatter.woff -------------------------------------------------------------------------------- /app/assets/images/main/font/middle.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/font/middle.woff -------------------------------------------------------------------------------- /app/assets/images/main/font/thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/font/thin.woff -------------------------------------------------------------------------------- /app/assets/images/main/font/thinner.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/font/thinner.woff -------------------------------------------------------------------------------- /app/assets/images/main/friend-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/friend-x.svg -------------------------------------------------------------------------------- /app/assets/images/main/friendless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/friendless.svg -------------------------------------------------------------------------------- /app/assets/images/main/hangup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/hangup.svg -------------------------------------------------------------------------------- /app/assets/images/main/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/headphones.svg -------------------------------------------------------------------------------- /app/assets/images/main/join-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/join-server.png -------------------------------------------------------------------------------- /app/assets/images/main/long logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/long logo.svg -------------------------------------------------------------------------------- /app/assets/images/main/online-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/online-empty.svg -------------------------------------------------------------------------------- /app/assets/images/main/or.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/or.svg -------------------------------------------------------------------------------- /app/assets/images/main/pending-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/pending-empty.svg -------------------------------------------------------------------------------- /app/assets/images/main/personal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/personal.svg -------------------------------------------------------------------------------- /app/assets/images/main/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/search.svg -------------------------------------------------------------------------------- /app/assets/images/main/server-modal-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/server-modal-left.png -------------------------------------------------------------------------------- /app/assets/images/main/server-modal-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/server-modal-right.png -------------------------------------------------------------------------------- /app/assets/images/main/welcome-comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/welcome-comp.svg -------------------------------------------------------------------------------- /app/assets/images/main/welcome-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/welcome-phone.svg -------------------------------------------------------------------------------- /app/assets/images/main/white_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/white_logo.png -------------------------------------------------------------------------------- /app/assets/images/main/x-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/x-button.svg -------------------------------------------------------------------------------- /app/assets/images/main/x-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/main/x-user.svg -------------------------------------------------------------------------------- /app/assets/images/splash/discor-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/splash/discor-font.woff -------------------------------------------------------------------------------- /app/assets/images/splash/discors-font-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/splash/discors-font-bold.woff -------------------------------------------------------------------------------- /app/assets/images/splash/p-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/images/splash/p-font.woff -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/channels/chat.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/javascripts/channels/chat.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/channels/voice.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/javascripts/channels/voice.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/channel_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/channel_modal.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/chrome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/chrome.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/css_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/css_reset.css -------------------------------------------------------------------------------- /app/assets/stylesheets/edge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/edge.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/edit_user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/edit_user.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/firefox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/firefox.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/friends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/friends.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/loading.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/login.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/main.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/messages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/server_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/server_modal.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/spash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/spash.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/user_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/assets/stylesheets/user_popup.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/channels/chat_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/channels/chat_channel.rb -------------------------------------------------------------------------------- /app/channels/notifications_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/channels/notifications_channel.rb -------------------------------------------------------------------------------- /app/channels/voice_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/channels/voice_channel.rb -------------------------------------------------------------------------------- /app/controllers/api/audio_channels_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/audio_channels_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/channels_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/channels_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/dm_channel_memberships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/dm_channel_memberships_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/friend_requests_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/friend_requests_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/friends_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/friends_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/servers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/servers_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/friend_request_broadcast_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/jobs/friend_request_broadcast_job.rb -------------------------------------------------------------------------------- /app/jobs/friendship_broadcast_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/jobs/friendship_broadcast_job.rb -------------------------------------------------------------------------------- /app/jobs/notification_broadcast_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/jobs/notification_broadcast_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/audio_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/audio_channel.rb -------------------------------------------------------------------------------- /app/models/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/channel.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/dm_channel_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/dm_channel_membership.rb -------------------------------------------------------------------------------- /app/models/friend_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/friend_request.rb -------------------------------------------------------------------------------- /app/models/friendship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/friendship.rb -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/models/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/server.rb -------------------------------------------------------------------------------- /app/models/server_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/server_membership.rb -------------------------------------------------------------------------------- /app/models/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/session.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/audio_channels/_audio_channel.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/audio_channels/_audio_channel.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/audio_channels/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/audio_channels/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/audio_channels/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/audio_channels/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/channels/_channel.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/channels/_channel.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/channels/dm_index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/channels/dm_index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/channels/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/channels/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/channels/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/channels/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/friend_requests/_friend_request.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/friend_requests/_friend_request.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/friend_requests/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/friend_requests/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/messages/_message.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/messages/_message.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/servers/_server.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/servers/_server.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/servers/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/servers/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/servers/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/servers/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/users/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/users/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/user_data.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/api/users/user_data.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/static_pages/root.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/app/views/static_pages/root.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20190121174348_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190121174348_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20190122185229_create_servers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190122185229_create_servers.rb -------------------------------------------------------------------------------- /db/migrate/20190122190214_create_server_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190122190214_create_server_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20190123145743_create_channels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190123145743_create_channels.rb -------------------------------------------------------------------------------- /db/migrate/20190124162319_create_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190124162319_create_messages.rb -------------------------------------------------------------------------------- /db/migrate/20190125020020_create_dm_channel_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190125020020_create_dm_channel_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20190126030608_create_friend_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190126030608_create_friend_requests.rb -------------------------------------------------------------------------------- /db/migrate/20190126032316_create_friendships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190126032316_create_friendships.rb -------------------------------------------------------------------------------- /db/migrate/20190127215251_create_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190127215251_create_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20190129004713_create_voice_channels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190129004713_create_voice_channels.rb -------------------------------------------------------------------------------- /db/migrate/20190129010218_change_voice_channels_to_audio_channels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190129010218_change_voice_channels_to_audio_channels.rb -------------------------------------------------------------------------------- /db/migrate/20190129201658_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190129201658_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20190203031645_add_column_to_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190203031645_add_column_to_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20190218200301_remove_session_token_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/migrate/20190218200301_remove_session_token_from_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /frontend/actions/channel_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/channel_actions.js -------------------------------------------------------------------------------- /frontend/actions/friends_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/friends_actions.js -------------------------------------------------------------------------------- /frontend/actions/notification_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/notification_actions.js -------------------------------------------------------------------------------- /frontend/actions/server_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/server_actions.js -------------------------------------------------------------------------------- /frontend/actions/session_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/session_actions.js -------------------------------------------------------------------------------- /frontend/actions/ui_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/ui_actions.js -------------------------------------------------------------------------------- /frontend/actions/voice_channel_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/actions/voice_channel_actions.js -------------------------------------------------------------------------------- /frontend/components/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app.jsx -------------------------------------------------------------------------------- /frontend/components/app/app_root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/app_root.jsx -------------------------------------------------------------------------------- /frontend/components/app/app_routes/friends_main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/app_routes/friends_main.jsx -------------------------------------------------------------------------------- /frontend/components/app/app_routes/me_main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/app_routes/me_main.jsx -------------------------------------------------------------------------------- /frontend/components/app/app_routes/me_route.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/app_routes/me_route.jsx -------------------------------------------------------------------------------- /frontend/components/app/app_routes/server_main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/app_routes/server_main.jsx -------------------------------------------------------------------------------- /frontend/components/app/app_routes/server_route.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/app_routes/server_route.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/channels/channel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/channels/channel.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/channels/channels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/channels/channels.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/channels/channels_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/channels/channels_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/create_channel_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/create_channel_form.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/dm_channels/dm_channel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/dm_channels/dm_channel.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/dm_channels/dm_channels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/dm_channels/dm_channels.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/dm_channels/dm_channels_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/dm_channels/dm_channels_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/edit_user_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/edit_user_form.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/user_bar/user_bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/user_bar/user_bar.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/user_bar/user_bar_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/user_bar/user_bar_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/voice_channels/voice_channel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/voice_channels/voice_channel.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/voice_channels/voice_channels.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/voice_channels/voice_channels.jsx -------------------------------------------------------------------------------- /frontend/components/app/channels/voice_channels/voice_channels_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/channels/voice_channels/voice_channels_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/chat/chat/chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/chat/chat/chat.jsx -------------------------------------------------------------------------------- /frontend/components/app/chat/chat/chat_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/chat/chat/chat_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/chat/message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/chat/message.jsx -------------------------------------------------------------------------------- /frontend/components/app/chat/message_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/chat/message_form.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/friend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/friend.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/friends_header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/friends_header.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/friends_list/friends.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/friends_list/friends.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/friends_list/friends_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/friends_list/friends_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/friends_list/online_friends_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/friends_list/online_friends_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/mutual_server.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/mutual_server.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/pending_friends/pending_friends.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/pending_friends/pending_friends.jsx -------------------------------------------------------------------------------- /frontend/components/app/friends/pending_friends/pending_friends_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/friends/pending_friends/pending_friends_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/header/header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/header/header/header.jsx -------------------------------------------------------------------------------- /frontend/components/app/header/header/header_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/header/header/header_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/header/me_header/me_header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/header/me_header/me_header.jsx -------------------------------------------------------------------------------- /frontend/components/app/header/me_header/me_header_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/header/me_header/me_header_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/loading_screen.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/loading_screen.jsx -------------------------------------------------------------------------------- /frontend/components/app/modal/tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/modal/tooltip.jsx -------------------------------------------------------------------------------- /frontend/components/app/modal/user_popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/modal/user_popup.jsx -------------------------------------------------------------------------------- /frontend/components/app/modal/user_popup_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/modal/user_popup_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/server_members/server_member.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/server_members/server_member.jsx -------------------------------------------------------------------------------- /frontend/components/app/server_members/server_members/server_members.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/server_members/server_members/server_members.jsx -------------------------------------------------------------------------------- /frontend/components/app/server_members/server_members/server_members_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/server_members/server_members/server_members_container.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/create_server_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/create_server_form.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/dm_notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/dm_notification.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/join_server_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/join_server_form.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/search_server_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/search_server_item.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/search_servers_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/search_servers_form.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/server.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/server.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/servers/servers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/servers/servers.jsx -------------------------------------------------------------------------------- /frontend/components/app/servers/servers/servers_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/app/servers/servers/servers_container.jsx -------------------------------------------------------------------------------- /frontend/components/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/root.jsx -------------------------------------------------------------------------------- /frontend/components/session_form/login/login_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/session_form/login/login_form.jsx -------------------------------------------------------------------------------- /frontend/components/session_form/login/login_form_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/session_form/login/login_form_container.jsx -------------------------------------------------------------------------------- /frontend/components/session_form/signup/signup_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/session_form/signup/signup_form.jsx -------------------------------------------------------------------------------- /frontend/components/session_form/signup/signup_form_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/session_form/signup/signup_form_container.jsx -------------------------------------------------------------------------------- /frontend/components/splash/splash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/splash/splash.jsx -------------------------------------------------------------------------------- /frontend/components/splash/splash_container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/components/splash/splash_container.jsx -------------------------------------------------------------------------------- /frontend/discors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/discors.jsx -------------------------------------------------------------------------------- /frontend/reducers/entities/channels_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/channels_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities/entities_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/entities_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities/friend_requests_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/friend_requests_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities/friends_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/friends_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities/servers_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/servers_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities/users_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/users_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities/voice_channels_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/entities/voice_channels_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/errors/channel_errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/errors/channel_errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/errors/errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/errors/errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/errors/server_errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/errors/server_errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/errors/session_errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/errors/session_errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/loading_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/loading_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/notifications/dm_notifications_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/notifications/dm_notifications_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/notifications/notifications_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/notifications/notifications_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/root_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/root_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/session_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/session_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/ui_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/reducers/ui_reducer.js -------------------------------------------------------------------------------- /frontend/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/store/store.js -------------------------------------------------------------------------------- /frontend/util/channel_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/util/channel_api_util.js -------------------------------------------------------------------------------- /frontend/util/friends_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/util/friends_api_util.js -------------------------------------------------------------------------------- /frontend/util/route_util.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/util/route_util.jsx -------------------------------------------------------------------------------- /frontend/util/server_api_utl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/util/server_api_utl.js -------------------------------------------------------------------------------- /frontend/util/session_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/util/session_api_util.js -------------------------------------------------------------------------------- /frontend/util/voice_channel_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/frontend/util/voice_channel_api_util.js -------------------------------------------------------------------------------- /helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/sessions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/lib/tasks/sessions.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffdeliso/discors/HEAD/webpack.config.js --------------------------------------------------------------------------------