mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
14 lines
287 B
CoffeeScript
14 lines
287 B
CoffeeScript
define [
|
|
"models/User"
|
|
"libs/backbone"
|
|
], (User) ->
|
|
ProjectMemberList = Backbone.Collection.extend
|
|
model: User
|
|
|
|
numberOfCollaborators: () ->
|
|
collaborators = 0
|
|
for member in @models
|
|
if member.get("privileges") != "owner"
|
|
collaborators += 1
|
|
return collaborators
|
|
|