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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.4 KiB
Plaintext
Raw Normal View History

/*jshint maxlen:10000000 */
import { NOTIFICATION_TYPES } from "fixtures/concerns/notification-types";
2018-01-08 17:22:53 -05:00
export default {
"/notifications": {
notifications: [
{
id: 123,
notification_type: NOTIFICATION_TYPES.replied,
2018-01-08 17:22:53 -05:00
read: false,
post_number: 2,
topic_id: 1234,
slug: "a-slug",
data: { topic_title: "some title", display_username: "velesin" }
},
{
id: 456,
notification_type: NOTIFICATION_TYPES.liked_consolidated,
read: false,
2019-01-15 21:58:11 -05:00
data: { display_username: "aquaman", count: "5" }
},
{
id: 789,
notification_type: NOTIFICATION_TYPES.group_message_summary,
read: false,
post_number: null,
topic_id: null,
slug: null,
data: {
group_id: 41,
group_name: "test",
inbox_count: 5,
username: "test2"
}
},
{
id: 1234,
notification_type: NOTIFICATION_TYPES.invitee_accepted,
read: false,
post_number: null,
topic_id: null,
slug: null,
data: { display_username: "test1" }
},
{
id: 5678,
notification_type: NOTIFICATION_TYPES.membership_request_accepted,
read: false,
post_number: null,
topic_id: null,
slug: null,
data: { group_id: 41, group_name: "test" }
2019-01-15 21:58:11 -05:00
}
2018-01-08 17:22:53 -05:00
]
2018-06-15 11:03:24 -04:00
}
2018-01-08 17:22:53 -05:00
};