mirror of
https://github.com/frappe/books.git
synced 2025-01-05 08:02:15 +00:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
|
const frappe = require('frappe-core');
|
||
|
|
||
|
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 };
|