mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
pretty print json
This commit is contained in:
@@ -9,8 +9,9 @@ export class CipherResponse extends Cipher implements BaseResponse {
|
||||
id: string;
|
||||
|
||||
constructor(o: CipherView) {
|
||||
super(o);
|
||||
super();
|
||||
this.object = 'item';
|
||||
this.id = o.id;
|
||||
this.build(o);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,8 +9,9 @@ export class CollectionResponse extends Collection implements BaseResponse {
|
||||
id: string;
|
||||
|
||||
constructor(o: CollectionView) {
|
||||
super(o);
|
||||
super();
|
||||
this.object = 'collection';
|
||||
this.id = o.id;
|
||||
this.build(o);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,8 +9,9 @@ export class FolderResponse extends Folder implements BaseResponse {
|
||||
id: string;
|
||||
|
||||
constructor(o: FolderView) {
|
||||
super(o);
|
||||
super();
|
||||
this.object = 'folder';
|
||||
this.id = o.id;
|
||||
this.build(o);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user