Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Created December 22, 2014 15:51
Show Gist options
  • Save thenickcox/dcab6393c6f9c8e0622f to your computer and use it in GitHub Desktop.
Save thenickcox/dcab6393c6f9c8e0622f to your computer and use it in GitHub Desktop.
# app/assets/javascripts/collections/albums.js.coffee
App.Collections.Albums = Backbone.Collection.extend
model: App.Models.Album
url: ->
userId = $('#featured').data('user-id')
"/users/#{userId}/albums"
featured: ->
@where(featured: true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment