diff --git a/README.md b/README.md index c9fa0f3..f155e11 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,7 @@ -# Forg +# Tabletop Companion -Forg is a _Family ORGaniser_. - -It will allow you to: - -- Set and assign todos - - Includes regularly scheduled tasks, such as housework -- Set a meal plan - - Allows for advanced reminders to cook/purchase ingredients/defrost -- Manage a shopping list +Tabletop Companion is a lightweight way to assist you playing tabletop games, online with +the video chat software of your choice or offline at a physical table. ## Development setup diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb index 7ed3d14..be9e82b 100644 --- a/app/mailers/user_mailer.rb +++ b/app/mailers/user_mailer.rb @@ -5,12 +5,12 @@ class UserMailer < ApplicationMailer @user = params[:user] @token = params[:token] - mail(to: @user.email, subject: "[Forg] Verify your email") + mail(to: @user.email, subject: "[Tabletop Companion] Verify your email") end def email_verified @user = params[:user] - mail(to: @user.email, subject: "[Forg] Your email has been verified") + mail(to: @user.email, subject: "[Tabletop Companion] Your email has been verified") end end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index a9767cd..de669f1 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,7 +1,7 @@ - <%= "#{yield(:title)} | " if content_for? :title %><%= t("forg") %> + <%= "#{yield(:title)} | " if content_for? :title %><%= t("site_name") %> <%= csrf_meta_tags %> <%= csp_meta_tag %> @@ -14,11 +14,11 @@
-

<%= link_to t("forg"), root_path %>

+

<%= link_to t("site_name"), root_path %>