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 @@