Add description to monitor

* Add description to monitor model
* Add description field to database
* Add english and spanish translation for description
* Closes: #482
This commit is contained in:
Juan Cruz Vincenti
2021-11-11 20:06:32 -03:00
parent 5bc68d7f3b
commit 934d633d4d
10 changed files with 26 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ class Monitor extends BeanModel {
return {
id: this.id,
name: this.name,
description: this.description,
};
}
@@ -54,6 +55,7 @@ class Monitor extends BeanModel {
return {
id: this.id,
name: this.name,
description: this.description,
url: this.url,
method: this.method,
body: this.body,