Skip to content

Instantly share code, notes, and snippets.

@jkmcrg
Created June 18, 2014 23:55
Show Gist options
  • Save jkmcrg/696d902845163636b4fd to your computer and use it in GitHub Desktop.
Save jkmcrg/696d902845163636b4fd to your computer and use it in GitHub Desktop.
app.factory 'Project', [
'$resource'
($resource) ->
Project = ->
@service = $resource('/api/projects/:projectId', {projectId: '@id'})
return
Project::all = ->
@service.query()
Project::get = (id) ->
return @service.get({projectId: id})
Project::modules = ->
console.log 'mods'
return new Project
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment