94 lines
2.4 KiB
JavaScript
94 lines
2.4 KiB
JavaScript
window.TestResponses = {
|
|
sessionPost: {
|
|
"id": "1234",
|
|
"description": "Hello",
|
|
"musician_access" : true,
|
|
"genres" : ['classical'],
|
|
"participants": [
|
|
{
|
|
"client_id": "0f8f7987-29a0-4e5d-a60c-6b23103e3533",
|
|
"ip_address":"1.1.1.1",
|
|
"user_id" : "02303020402042040", // NOTE THIS WILL BE UNDEFINED (ABSENT) IF THIS CLIENT IS NOT YOUR FRIEND
|
|
"tracks" : [
|
|
{
|
|
"id" : "xxxx",
|
|
"instrument_id" : "electric guitar",
|
|
"sound" : "mono"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
|
|
loadGenres: [
|
|
{
|
|
id: "african",
|
|
description: "African"
|
|
},
|
|
{
|
|
id: "ambient",
|
|
description: "Ambient"
|
|
}
|
|
],
|
|
|
|
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"
|
|
}
|
|
]
|
|
}
|
|
}; |