62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
window.TestResponses = {
|
|
search : {
|
|
bands: [ ],
|
|
musicians: [ ],
|
|
fans: [
|
|
{
|
|
id: "1",
|
|
first_name: "Test",
|
|
last_name: "User",
|
|
location: "Austin, TX",
|
|
photo_url: "http://www.jamkazam.com/images/users/photos/1.gif"
|
|
}
|
|
],
|
|
recordings: [ ]
|
|
},
|
|
|
|
emptySearch: {
|
|
bands: [],
|
|
musicians: [],
|
|
fans: [],
|
|
recordings: []
|
|
},
|
|
|
|
fullSearch: {
|
|
bands: [
|
|
{
|
|
id: "1",
|
|
first_name: "Test",
|
|
last_name: "User",
|
|
location: "Austin, TX",
|
|
photo_url: "http://www.jamkazam.com/images/users/photos/1.gif"
|
|
}
|
|
],
|
|
musicians: [
|
|
{
|
|
id: "1",
|
|
first_name: "Test",
|
|
last_name: "User",
|
|
location: "Austin, TX",
|
|
photo_url: "http://www.jamkazam.com/images/users/photos/1.gif"
|
|
}
|
|
],
|
|
fans: [
|
|
{
|
|
id: "1",
|
|
first_name: "Test",
|
|
last_name: "User",
|
|
location: "Austin, TX",
|
|
photo_url: "http://www.jamkazam.com/images/users/photos/1.gif"
|
|
}
|
|
],
|
|
recordings: [
|
|
{
|
|
id: "1",
|
|
first_name: "Test",
|
|
last_name: "User",
|
|
location: "Austin, TX",
|
|
photo_url: "http://www.jamkazam.com/images/users/photos/1.gif"
|
|
}
|
|
]
|
|
}
|
|
}; |