- Decided to go with straight Suave "Experimental" views (for now) - Created EF Core entity model (our data is pretty structured, and PostgreSQL (target DB) supports max-length strings) - Added Auth0 lock - Converted to 1.0 tooling
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
/**
|
|
* myPrayerJournal script file
|
|
*/
|
|
var mpj = {
|
|
lock: new Auth0Lock('Of2s0RQCQ3mt3dwIkOBY5h85J9sXbF2n', 'djs-consulting.auth0.com', {
|
|
auth: { redirectUrl: 'http://localhost:8080/user/log-on' }
|
|
}),
|
|
|
|
signIn: function() {
|
|
this.lock.show()
|
|
}
|
|
} |