mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
26 lines
673 B
JavaScript
26 lines
673 B
JavaScript
const { BeanModel } = require("redbean-node/dist/bean-model");
|
|
|
|
class Proxy extends BeanModel {
|
|
/**
|
|
* Return an object that ready to parse to JSON
|
|
* @returns {object} Object ready to parse
|
|
*/
|
|
toJSON() {
|
|
return {
|
|
id: this._id,
|
|
userId: this._user_id,
|
|
protocol: this._protocol,
|
|
host: this._host,
|
|
port: this._port,
|
|
auth: !!this._auth,
|
|
username: this._username,
|
|
password: this._password,
|
|
active: !!this._active,
|
|
default: !!this._default,
|
|
createdDate: this._created_date,
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = Proxy;
|