2014-08-02 05:26:43 +08:00
|
|
|
/*jshint maxlen:10000000 */
|
2019-06-04 17:09:34 +08:00
|
|
|
import {
|
|
|
|
LIKED_CONSOLIDATED_TYPE,
|
|
|
|
REPLIED_TYPE
|
|
|
|
} from "discourse/widgets/concerns/notification-types";
|
2019-01-16 10:40:16 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
export default {
|
|
|
|
"/notifications": {
|
|
|
|
notifications: [
|
|
|
|
{
|
|
|
|
id: 123,
|
2019-06-04 17:09:34 +08:00
|
|
|
notification_type: REPLIED_TYPE,
|
2018-06-15 23:03:24 +08:00
|
|
|
read: false,
|
|
|
|
post_number: 2,
|
|
|
|
topic_id: 1234,
|
|
|
|
slug: "a-slug",
|
|
|
|
data: { topic_title: "some title", display_username: "velesin" }
|
2019-01-16 10:40:16 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 456,
|
|
|
|
notification_type: LIKED_CONSOLIDATED_TYPE,
|
|
|
|
read: false,
|
2019-01-16 10:58:11 +08:00
|
|
|
data: { display_username: "aquaman", count: "5" }
|
|
|
|
}
|
2018-06-15 23:03:24 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|