1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00

Updated domain to maybefinance.com

This commit is contained in:
Josh Pigford 2024-12-03 11:09:57 -06:00
parent c456950de8
commit 565103caf3
7 changed files with 47 additions and 6 deletions

View file

@ -21,7 +21,7 @@ Steps to reproduce the behavior:
A clear and concise description of what you expected to happen. A clear and concise description of what you expected to happen.
**What version of Maybe are you using?** **What version of Maybe are you using?**
This could be "Hosted" (i.e. app.maybe.co) or "Self-hosted". If "Self-hosted", please include the version you're currently on. This could be "Hosted" (i.e. app.maybefinance.com) or "Self-hosted". If "Self-hosted", please include the version you're currently on.
**What operating system and browser are you using?** **What operating system and browser are you using?**
The more info the better. The more info the better.

View file

@ -4,7 +4,7 @@
# Maybe: The OS for your personal finances # Maybe: The OS for your personal finances
<b>Get <b>Get
involved: [Discord](https://link.maybe.co/discord) • [Website](https://maybe.co) • [Issues](https://github.com/maybe-finance/maybe/issues)</b> involved: [Discord](https://link.maybe.co/discord) • [Website](https://maybefinance.com) • [Issues](https://github.com/maybe-finance/maybe/issues)</b>
_If you're looking for the previous React codebase, you can find it _If you're looking for the previous React codebase, you can find it
at [maybe-finance/maybe-archive](https://github.com/maybe-finance/maybe-archive)._ at [maybe-finance/maybe-archive](https://github.com/maybe-finance/maybe-archive)._

View file

@ -2,6 +2,6 @@
<footer class="p-6"> <footer class="p-6">
<div class="space-y-2 text-center text-xs text-gray-500"> <div class="space-y-2 text-center text-xs text-gray-500">
<p>&copy; <%= Date.current.year %>, Maybe Finance, Inc.</p> <p>&copy; <%= Date.current.year %>, Maybe Finance, Inc.</p>
<p><%= link_to t(".privacy_policy"), "https://maybe.co/privacy", class: "underline hover:text-gray-600" %> &bull; <%= link_to t(".terms_of_service"), "https://maybe.co/tos", class: "underline hover:text-gray-600" %></p> <p><%= link_to t(".privacy_policy"), "https://maybefinance.com/privacy", class: "underline hover:text-gray-600" %> &bull; <%= link_to t(".terms_of_service"), "https://maybefinance.com/tos", class: "underline hover:text-gray-600" %></p>
</div> </div>
</footer> </footer>

View file

@ -55,7 +55,7 @@
<span class="text-gray-900 text-sm">Contact</span> <span class="text-gray-900 text-sm">Contact</span>
<% end %> <% end %>
<% else %> <% else %>
<%= link_to "mailto:hello@maybe.co", class: "flex gap-2 items-center hover:bg-gray-50 rounded-lg px-3 py-2", onclick: "Intercom('showNewMessage'); return false;" do %> <%= link_to "mailto:hello@maybefinance.com", class: "flex gap-2 items-center hover:bg-gray-50 rounded-lg px-3 py-2", onclick: "Intercom('showNewMessage'); return false;" do %>
<%= lucide_icon("message-square-more", class: "w-5 h-5 text-gray-500 shrink-0") %> <%= lucide_icon("message-square-more", class: "w-5 h-5 text-gray-500 shrink-0") %>
<span class="text-gray-900 text-sm">Contact</span> <span class="text-gray-900 text-sm">Contact</span>
<% end %> <% end %>

View file

@ -18,7 +18,7 @@
<span class="text-sm font-medium text-gray-900">File a bug report</span> <span class="text-sm font-medium text-gray-900">File a bug report</span>
<% end %> <% end %>
<% else %> <% else %>
<%= link_to "mailto:hello@maybe.co", class: "w-1/3 flex flex-col items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-gray-50", onclick: "Intercom('showNewMessage'); return false;" do %> <%= link_to "mailto:hello@maybefinance.com", class: "w-1/3 flex flex-col items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-gray-50", onclick: "Intercom('showNewMessage'); return false;" do %>
<%= lucide_icon "bug", class: "w-8 h-8 mb-2" %> <%= lucide_icon "bug", class: "w-8 h-8 mb-2" %>
<span class="text-sm font-medium text-gray-900">File a bug report</span> <span class="text-sm font-medium text-gray-900">File a bug report</span>
<% end %> <% end %>

41
db/schema.rb generated
View file

@ -174,6 +174,15 @@ ActiveRecord::Schema[7.2].define(version: 2024_11_26_211249) do
t.index ["family_id"], name: "index_categories_on_family_id" t.index ["family_id"], name: "index_categories_on_family_id"
end end
create_table "chats", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
t.uuid "user_id", null: false
t.string "title"
t.text "summary"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["user_id"], name: "index_chats_on_user_id"
end
create_table "credit_cards", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t| create_table "credit_cards", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
t.datetime "created_at", null: false t.datetime "created_at", null: false
t.datetime "updated_at", null: false t.datetime "updated_at", null: false
@ -452,6 +461,33 @@ ActiveRecord::Schema[7.2].define(version: 2024_11_26_211249) do
t.index ["family_id"], name: "index_merchants_on_family_id" t.index ["family_id"], name: "index_merchants_on_family_id"
end end
create_table "messages", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
t.uuid "chat_id", null: false
t.uuid "user_id"
t.text "content"
t.text "log"
t.string "role"
t.string "status", default: "pending"
t.boolean "hidden", default: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["chat_id"], name: "index_messages_on_chat_id"
t.index ["user_id"], name: "index_messages_on_user_id"
end
create_table "metrics", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
t.uuid "family_id", null: false
t.uuid "account_id"
t.string "kind", null: false
t.string "subkind"
t.date "date", null: false
t.decimal "value", precision: 10, scale: 2, null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["account_id"], name: "index_metrics_on_account_id"
t.index ["family_id"], name: "index_metrics_on_family_id"
end
create_table "other_assets", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t| create_table "other_assets", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
t.datetime "created_at", null: false t.datetime "created_at", null: false
t.datetime "updated_at", null: false t.datetime "updated_at", null: false
@ -639,6 +675,7 @@ ActiveRecord::Schema[7.2].define(version: 2024_11_26_211249) do
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id" add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id" add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
add_foreign_key "categories", "families" add_foreign_key "categories", "families"
add_foreign_key "chats", "users"
add_foreign_key "impersonation_session_logs", "impersonation_sessions" add_foreign_key "impersonation_session_logs", "impersonation_sessions"
add_foreign_key "impersonation_sessions", "users", column: "impersonated_id" add_foreign_key "impersonation_sessions", "users", column: "impersonated_id"
add_foreign_key "impersonation_sessions", "users", column: "impersonator_id" add_foreign_key "impersonation_sessions", "users", column: "impersonator_id"
@ -647,6 +684,10 @@ ActiveRecord::Schema[7.2].define(version: 2024_11_26_211249) do
add_foreign_key "invitations", "families" add_foreign_key "invitations", "families"
add_foreign_key "invitations", "users", column: "inviter_id" add_foreign_key "invitations", "users", column: "inviter_id"
add_foreign_key "merchants", "families" add_foreign_key "merchants", "families"
add_foreign_key "messages", "chats"
add_foreign_key "messages", "users"
add_foreign_key "metrics", "accounts"
add_foreign_key "metrics", "families"
add_foreign_key "plaid_accounts", "plaid_items" add_foreign_key "plaid_accounts", "plaid_items"
add_foreign_key "plaid_items", "families" add_foreign_key "plaid_items", "families"
add_foreign_key "security_prices", "securities" add_foreign_key "security_prices", "securities"

View file

@ -10,7 +10,7 @@ maybe_support_staff:
family: empty family: empty
first_name: Support first_name: Support
last_name: Admin last_name: Admin
email: support@maybe.co email: support@maybefinance.com
password_digest: <%= BCrypt::Password.create('password') %> password_digest: <%= BCrypt::Password.create('password') %>
role: super_admin role: super_admin
onboarded_at: <%= 3.days.ago %> onboarded_at: <%= 3.days.ago %>