Sign in now goes from Auth0, back to the app, which gets the user ID from the response and redirects to the journal page. Woot!
15 lines
309 B
Forth
15 lines
309 B
Forth
/// URL routes for myPrayerJournal
|
|
module MyPrayerJournal.Route
|
|
|
|
/// The home page
|
|
let home = "/"
|
|
|
|
/// The main journal page
|
|
let journal = "/journal"
|
|
|
|
/// Routes dealing with users
|
|
module User =
|
|
/// The route for user log on response from Auth0
|
|
let logOn = "/user/log-on"
|
|
let logOff = "/user/log-off"
|
|
|