Commit bef79b00 authored by Frank Bergmann's avatar Frank Bergmann

- Last - more or less - working version before

  starting to work with versions
parent 6d0e0dc7
This diff is collapsed.
...@@ -23,7 +23,6 @@ Ext.define('POSync.model.File', { ...@@ -23,7 +23,6 @@ Ext.define('POSync.model.File', {
'content_length', // File length in bytes (empty string for folders) 'content_length', // File length in bytes (empty string for folders)
'creation_date', // Date of first creation 'creation_date', // Date of first creation
'publish_date',
'modification_date', // Date of last modification 'modification_date', // Date of last modification
'sha1', // sha-1 hash of the content (empty string for folders) 'sha1', // sha-1 hash of the content (empty string for folders)
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
/* /*
* What should we do during sync? * What should we do during sync?
*/ */
Ext.define('POSync.model.Operation', { Ext.define('POSync.model.Operation', {
extend: 'Ext.data.Model', extend: 'Ext.data.Model',
idProperty: 'id', idProperty: 'id',
...@@ -14,6 +12,8 @@ Ext.define('POSync.model.Operation', { ...@@ -14,6 +12,8 @@ Ext.define('POSync.model.Operation', {
'file_name', 'file_name',
'mime_type', 'mime_type',
'file_sha1', 'file_sha1',
'op' 'op',
'local_file',
'remote_file'
] ]
}); });
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment