1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 13:35:21 +02:00

Beta Testing Round 3 Bug Fixes (#1357)

* Clean up env example files

* Fix duplicate category creations

* Fix duplicate tag and merchant creation

* Add initial valuation to imported accounts

* Add upgrade modal prompt

* Don't hide content on billing page

* Add temporary session for new customers

* Lint fixes

* Fix unused translations

* Fix system tests
This commit is contained in:
Zach Gollwitzer 2024-10-24 11:02:27 -04:00 committed by GitHub
parent 1d20de770f
commit 6baffe7539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 231 additions and 81 deletions

View file

@ -5,7 +5,10 @@ en:
delete: Delete category
edit: Edit category
create:
failure: 'Failed to create category: %{error}'
success: New transaction category created successfully
destroy:
success: Category deleted successfully
edit:
edit: Edit category
form:

View file

@ -2,6 +2,7 @@
en:
merchants:
create:
error: 'Error creating merchant: %{error}'
success: New merchant created successfully
destroy:
success: Merchant deleted successfully

View file

@ -3,9 +3,7 @@ en:
settings:
billings:
show:
manage_subscription_button: Manage subscription
page_title: Billing
subscribe_button: Subscribe
subscription_subtitle: Manage your subscription and billing details
subscription_title: Manage subscription
nav:

View file

@ -13,12 +13,6 @@ en:
no_account_subtitle: Since no accounts have been added, there's no data to display.
Add your first accounts to start viewing dashboard data.
no_account_title: No accounts yet
subscribe_prompt:
guarantee: We're reasonable people here. If you're not happy or something doesn't
work, we'll gladly refund you.
subscribe: Upgrade your account
subtitle: To continue using Maybe, please subscribe!
title: Upgrade
upgrade_notification:
app_upgraded: The app has been upgraded to %{version}.
dismiss: Dismiss

View file

@ -3,6 +3,9 @@ en:
tags:
create:
created: Tag created
error: 'Error creating tag: %{error}'
destroy:
deleted: Tag deleted
edit:
edit: Edit tag
form:

View file

@ -26,9 +26,11 @@ Rails.application.routes.draw do
resource :billing, only: :show
end
resource :subscription, only: %i[new show]
resource :subscription, only: %i[new show] do
get :success, on: :collection
end
resources :tags, except: %i[show destroy] do
resources :tags, except: :show do
resources :deletions, only: %i[new create], module: :tag
end