myPrayerJournal/src/Route.fs
Daniel J. Summers c98c7bd5bf Sign in works and redirects!
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!
2017-04-24 20:49:28 -05:00

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"