mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 06:23:43 +08:00
d9d36f241d
Follow up to fcb7422213
.
25 lines
610 B
JavaScript
25 lines
610 B
JavaScript
/*jshint maxlen:10000000 */
|
|
import { NOTIFICATION_TYPES } from "fixtures/concerns/notification-types";
|
|
|
|
export default {
|
|
"/notifications": {
|
|
notifications: [
|
|
{
|
|
id: 123,
|
|
notification_type: NOTIFICATION_TYPES.replied,
|
|
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,
|
|
data: { display_username: "aquaman", count: "5" }
|
|
}
|
|
]
|
|
}
|
|
};
|