Merge branch 'master' into glitch-soc/merge-upstream

Conflicts:
- app/controllers/settings/notifications_controller.rb
- app/javascript/packs/public.js
- app/views/settings/preferences/show.html.haml
- app/views/stream_entries/_simple_status.html.haml
- config/locales/simple_form.en.yml
- config/locales/simple_form.pl.yml
- config/navigation.rb
- config/routes.rb
This commit is contained in:
Thibaut Girka
2019-06-10 18:30:41 +02:00
192 changed files with 934 additions and 440 deletions

View File

@ -1,6 +1,6 @@
require 'rails_helper'
describe Settings::NotificationsController do
describe Settings::Preferences::NotificationsController do
render_views
let(:user) { Fabricate(:user) }
@ -28,7 +28,7 @@ describe Settings::NotificationsController do
}
}
expect(response).to redirect_to(settings_notifications_path)
expect(response).to redirect_to(settings_preferences_notifications_path)
user.reload
expect(user.settings['notification_emails']['follow']).to be true
expect(user.settings['interactions']['must_be_follower']).to be false

View File

@ -1,6 +1,6 @@
require 'rails_helper'
describe Settings::PreferencesController do
describe Settings::Preferences::OtherController do
render_views
let(:user) { Fabricate(:user, filtered_languages: []) }
@ -20,7 +20,7 @@ describe Settings::PreferencesController do
it 'updates the user record' do
put :update, params: { user: { locale: 'en', chosen_languages: ['es', 'fr', ''] } }
expect(response).to redirect_to(settings_preferences_path)
expect(response).to redirect_to(settings_preferences_other_path)
user.reload
expect(user.locale).to eq 'en'
expect(user.chosen_languages).to eq ['es', 'fr']
@ -37,7 +37,7 @@ describe Settings::PreferencesController do
}
}
expect(response).to redirect_to(settings_preferences_path)
expect(response).to redirect_to(settings_preferences_other_path)
user.reload
expect(user.settings['boost_modal']).to be true
expect(user.settings['delete_modal']).to be false