Skip to content

Commit

Permalink
PREAPPS-6889: Opening txt file (who has edit access) from files share…
Browse files Browse the repository at this point in the history
…d with me folder doesn't warn for converting into docx format
  • Loading branch information
miteshsavani810 authored and silentsakky committed Oct 12, 2022
1 parent 12326a3 commit 27b087f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/normalize/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,8 @@ export const Document = new Entity({
cd: 'revisedCreationDate',
loid: 'lockOwnerId',
ct: 'contentType',
f: 'flags'
f: 'flags',
perm: 'permission'
});

export const ListDocumentRevisions = new Entity({
Expand Down
1 change: 1 addition & 0 deletions src/schema/generated-schema-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,7 @@ export type Document = {
metadataVersion?: Maybe<Scalars['Float']>;
modifiedSequence?: Maybe<Scalars['Float']>;
name?: Maybe<Scalars['String']>;
permission?: Maybe<Scalars['String']>;
revisedCreationDate?: Maybe<Scalars['Float']>;
revision?: Maybe<Scalars['Float']>;
revisonCreator?: Maybe<Scalars['String']>;
Expand Down
1 change: 1 addition & 0 deletions src/schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1554,6 +1554,7 @@ type Document {
revisedCreationDate: Float #cd
lockOwnerId: ID #loid
flags: String #f
permission: String #perm
docs: [Document]
}

Expand Down

0 comments on commit 27b087f

Please sign in to comment.