EteSync: expose journal owner.

master
Tom Hacohen 2017-12-26 11:56:56 +00:00
parent 763b5b757f
commit 3d9155e306
1 changed files with 4 additions and 0 deletions

View File

@ -125,6 +125,10 @@ export class Journal extends BaseJournal<JournalJson> {
return this._json.key;
}
get owner(): string | undefined {
return this._json.owner;
}
get version(): number {
return this._json.version;
}