Publishing Info (#70)

* Restore publishing info
Closes #68

* Prevent document remounting / refetching when changing between edit / read

* Merge master
This commit is contained in:
Tom Moor
2017-05-26 21:58:16 -07:00
committed by GitHub
parent 970bde3e1d
commit 0e293b38c7
8 changed files with 79 additions and 82 deletions

View File

@@ -23,7 +23,7 @@ export type Document = {
collaborators: Array<User>,
collection: Object,
createdAt: string,
createdBy: string,
createdBy: User,
html: string,
id: string,
private: boolean,
@@ -31,7 +31,7 @@ export type Document = {
text: string,
title: string,
updatedAt: string,
updatedBy: string,
updatedBy: User,
url: string,
};