1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-30 18:49:39 +02:00

Remove unused settings temporarily (#1136)

This commit is contained in:
Zach Gollwitzer 2024-08-27 17:10:31 -04:00 committed by GitHub
parent 38c2b4670c
commit c05ee9b572
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 84 additions and 207 deletions

View file

@ -51,23 +51,18 @@ en:
success: Settings updated successfully.
nav:
accounts_label: Accounts
billing_label: Billing
categories_label: Categories
feedback_label: Feedback
general_section_title: General
imports_label: Imports
invite_label: Invite friends
merchants_label: Merchants
notifications_label: Notifications
other_section_title: More
preferences_label: Preferences
profile_label: Account
rules_label: Rules
security_label: Security
self_hosting_label: Self-Hosting
self_hosting_label: Self hosting
tags_label: Tags
transactions_section_title: Transactions
whats_new_label: What's New
whats_new_label: What's new
nav_link_large:
next: Next
previous: Back

View file

@ -3,7 +3,6 @@ Rails.application.routes.draw do
get "changelog" => "pages#changelog", as: :changelog
get "feedback" => "pages#feedback", as: :feedback
get "invites" => "pages#invites", as: :invites
resource :registration
resource :session
@ -17,12 +16,9 @@ Rails.application.routes.draw do
namespace :settings do
resource :profile, only: %i[show update destroy]
resource :preferences, only: %i[show update]
resource :notifications, only: %i[show update]
resource :billing, only: %i[show update]
resource :hosting, only: %i[show update] do
post :send_test_email, on: :collection
end
resource :security, only: %i[show update]
end
resources :imports, except: :show do
@ -58,10 +54,6 @@ Rails.application.routes.draw do
namespace :account do
resources :transfers, only: %i[new create destroy]
namespace :transaction do
resources :rules, only: %i[index]
end
end
resources :accounts do