mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
Return all fetched messages headers in JSON.
This is in preperation of BIMI-Selectors #1394
This commit is contained in:
parent
55a5fb491a
commit
8292c47f7c
7 changed files with 135 additions and 69 deletions
13
dev/Model/MimeHeader.js
Normal file
13
dev/Model/MimeHeader.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import ko from 'ko';
|
||||
|
||||
import { AbstractModel } from 'Knoin/AbstractModel';
|
||||
|
||||
export class MimeHeaderModel extends AbstractModel
|
||||
{
|
||||
constructor() {
|
||||
super();
|
||||
this.name = '';
|
||||
this.value = '';
|
||||
this.parameters = ko.observableArray();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue