mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
10 lines
202 B
CoffeeScript
10 lines
202 B
CoffeeScript
|
define [
|
||
|
"libs/backbone"
|
||
|
], ()->
|
||
|
Change = Backbone.Model.extend
|
||
|
parse: (change) ->
|
||
|
return {
|
||
|
start_ts: change.meta.start_ts
|
||
|
end_ts: change.meta.end_ts
|
||
|
user_id: change.meta.user_id
|
||
|
}
|