discourse/test/javascripts/fixtures/notification_fixtures.js.es6

17 lines
330 B
Plaintext
Raw Normal View History

/*jshint maxlen:10000000 */
2018-06-15 11:03:24 -04:00
export default {
"/notifications": {
notifications: [
{
id: 123,
notification_type: 2,
read: false,
post_number: 2,
topic_id: 1234,
slug: "a-slug",
data: { topic_title: "some title", display_username: "velesin" }
}
]
}
};