From 51ec649e7fe0d8fe1b0c5042b38a47fa002e6cfc Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Mon, 25 Sep 2017 21:28:08 -0500 Subject: [PATCH] Renamed Dashboard to Journal (#2) --- docs/index.md | 2 +- src/app/src/auth/AuthService.js | 2 +- .../src/components/{Dashboard.vue => Journal.vue} | 13 +++++++------ src/app/src/components/Navigation.vue | 2 +- src/app/src/router/index.js | 4 ++-- 5 files changed, 12 insertions(+), 11 deletions(-) rename src/app/src/components/{Dashboard.vue => Journal.vue} (65%) diff --git a/docs/index.md b/docs/index.md index f5c0d4f..61a77ea 100644 --- a/docs/index.md +++ b/docs/index.md @@ -12,7 +12,7 @@ myPrayerJournal uses login services using Google or Microsoft accounts. The only # Adding a Request -To add a request, click the "Add a New Request" button in your "Dashboard" _(which will probably get renamed to "Journal" before this goes from alpha to beta)_. Then, enter the text of the request as you see fit; there is no right or wrong way, and you are the only person who will see the text you enter. When you save the request, it will go to the bottom of the list of requests. +To add a request, click the "Add a New Request" button in your "Dashboard" _("Journal" in v0.8.1)_. Then, enter the text of the request as you see fit; there is no right or wrong way, and you are the only person who will see the text you enter. When you save the request, it will go to the bottom of the list of requests. # Praying for Requests diff --git a/src/app/src/auth/AuthService.js b/src/app/src/auth/AuthService.js index e840abf..9562568 100644 --- a/src/app/src/auth/AuthService.js +++ b/src/app/src/auth/AuthService.js @@ -67,7 +67,7 @@ export default class AuthService { this.userInfo(authResult.accessToken) .then(user => { store.commit(mutations.USER_LOGGED_ON, user) - router.replace('/dashboard') + router.replace('/journal') }) } }) diff --git a/src/app/src/components/Dashboard.vue b/src/app/src/components/Journal.vue similarity index 65% rename from src/app/src/components/Dashboard.vue rename to src/app/src/components/Journal.vue index 0d92eca..ce2aa1e 100644 --- a/src/app/src/components/Dashboard.vue +++ b/src/app/src/components/Journal.vue @@ -1,14 +1,15 @@