Skip to content

Commit 3c46117

Browse files
BufferUnderflowerdavimacedo
authored andcommitted
Granular CLP pointer permissions (#6352)
* set pointer permissions per operatioon; tests * more tests * fixes addField permission; tests
1 parent 4beb89f commit 3c46117

File tree

10 files changed

+1380
-37
lines changed

10 files changed

+1380
-37
lines changed

spec/ParseObject.spec.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,15 @@ describe('Parse.Object testing', () => {
313313

314314
it('invalid __type', function(done) {
315315
const item = new Parse.Object('Item');
316-
const types = ['Pointer', 'File', 'Date', 'GeoPoint', 'Bytes', 'Polygon'];
316+
const types = [
317+
'Pointer',
318+
'File',
319+
'Date',
320+
'GeoPoint',
321+
'Bytes',
322+
'Polygon',
323+
'Relation',
324+
];
317325
const tests = types.map(type => {
318326
const test = new Parse.Object('Item');
319327
test.set('foo', {

0 commit comments

Comments
 (0)