File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -344,6 +344,11 @@ export default class ParseApp {
344
344
return AJAX . post ( path ) ;
345
345
}
346
346
347
+ cleanUpSystemLog ( ) {
348
+ let path = '/apps/' + this . slug + '/purge-logs' ;
349
+ return AJAX . post ( path ) ;
350
+ }
351
+
347
352
normalizePath ( path ) {
348
353
path = path . replace ( / ( [ ^ : \s ] ) \/ + / g, '$1/' ) ;
349
354
return path ;
@@ -490,7 +495,7 @@ export default class ParseApp {
490
495
//TODO: this currently works because everything that uses collaborators
491
496
// happens to re-render after this call anyway, but really the collaborators
492
497
// should be updated properly in a store or AppsManager or something
493
- this . settings . fields . fields . collaborators =
498
+ this . settings . fields . fields . collaborators =
494
499
Array . isArray ( this . settings . fields . fields . collaborators ) ?
495
500
this . settings . fields . fields . collaborators : [ ] ;
496
501
this . settings . fields . fields . collaborators . unshift ( data ) ;
You can’t perform that action at this time.
0 commit comments