Skip to content

Instantly share code, notes, and snippets.

@nodefortytwo
Created November 30, 2014 17:12
Show Gist options
  • Save nodefortytwo/c8d86a80fe2e89a422d9 to your computer and use it in GitHub Desktop.
Save nodefortytwo/c8d86a80fe2e89a422d9 to your computer and use it in GitHub Desktop.
Sample Chatrooms
[
{
id: 1,
module_id: 1,
user_id: 0,
status: 0,
name: "Seeded Chat 1",
created_at: "2014-11-30 17:10:03",
updated_at: "2014-11-30 17:10:03",
messages: [
{
id: 1,
chatroom_id: 1,
message: {
type: "text",
body: "This is a seeded moderator message"
},
read: 0,
created_at: "2014-11-30 17:10:03",
updated_at: "2014-11-30 17:10:03",
author: [
{
id: 1,
name: "",
email: "nodefortytwo@gmail.com",
created_at: "2014-11-30 17:10:03",
updated_at: "2014-11-30 17:10:03",
deleted_at: null
}
],
tags: [
]
},
{
id: 2,
chatroom_id: 1,
message: {
type: "text",
body: "This is a seeded partipant message"
},
read: 0,
created_at: "2014-11-30 17:10:03",
updated_at: "2014-11-30 17:10:03",
author: [
{
id: 1,
name: "Seeded Participant",
created_at: "2014-11-30 17:10:03",
updated_at: "2014-11-30 17:10:03"
}
],
tags: [
{
tag: "Negative",
start: 3,
end: 20
}
]
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment