mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
const frappe = require('frappejs');
|
|
|
|
class Session {
|
|
constructor(user, user_key) {
|
|
this.user = user || 'guest';
|
|
if (this.user !== 'guest') {
|
|
this.login(user_key);
|
|
}
|
|
}
|
|
|
|
login(user_key) {
|
|
// could be password, sessionid, otp
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = { Session: Session }; |