Skip to content

Commit

Permalink
Change /settings/preferences to redirect to appearance, add /settings…
Browse files Browse the repository at this point in the history
…/preferences/other (#10988)
  • Loading branch information
Gargron committed Jun 7, 2019
1 parent cdb4208 commit 560ec24
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
9 changes: 9 additions & 0 deletions app/controllers/settings/preferences/other_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true

class Settings::Preferences::OtherController < Settings::PreferencesController
private

def after_update_redirect_path
settings_preferences_other_path
end
end
4 changes: 2 additions & 2 deletions config/navigation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
s.item :identity_proofs, safe_join([fa_icon('key fw'), t('settings.identity_proofs')]), settings_identity_proofs_path, highlights_on: %r{/settings/identity_proofs*}, if: proc { current_account.identity_proofs.exists? }
end

n.item :preferences, safe_join([fa_icon('cog fw'), t('settings.preferences')]), settings_preferences_appearance_url do |s|
n.item :preferences, safe_join([fa_icon('cog fw'), t('settings.preferences')]), settings_preferences_url do |s|
s.item :appearance, safe_join([fa_icon('desktop fw'), t('settings.appearance')]), settings_preferences_appearance_url
s.item :notifications, safe_join([fa_icon('bell fw'), t('settings.notifications')]), settings_preferences_notifications_url
s.item :other, safe_join([fa_icon('cog fw'), t('preferences.other')]), settings_preferences_url
s.item :other, safe_join([fa_icon('cog fw'), t('preferences.other')]), settings_preferences_other_url
end

n.item :relationships, safe_join([fa_icon('users fw'), t('settings.relationships')]), relationships_url
Expand Down
6 changes: 4 additions & 2 deletions config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,17 @@
get '/explore', to: 'directories#index', as: :explore
get '/explore/:id', to: 'directories#show', as: :explore_hashtag

get '/settings', to: redirect('/settings/preferences')
get '/settings', to: redirect('/settings/profile')

namespace :settings do
resource :profile, only: [:show, :update]
resource :preferences, only: [:show, :update]

get :preferences, to: redirect('/settings/preferences/appearance')

namespace :preferences do
resource :appearance, only: [:show, :update], controller: :appearance
resource :notifications, only: [:show, :update]
resource :other, only: [:show, :update], controller: :other
end

resource :import, only: [:show, :create]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'rails_helper'

describe Settings::PreferencesController do
describe Settings::Preferences::OtherController do
render_views

let(:user) { Fabricate(:user, filtered_languages: []) }
Expand All @@ -20,7 +20,7 @@
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']
Expand All @@ -37,7 +37,7 @@
}
}

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
Expand Down

0 comments on commit 560ec24

Please sign in to comment.