mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
44 lines
942 B
JavaScript
44 lines
942 B
JavaScript
export const notifications = [
|
|
{
|
|
read: false,
|
|
reason: 'mentioned_in_post',
|
|
from: {
|
|
__typename: 'Post',
|
|
id: 'post-1',
|
|
title: 'some post title',
|
|
slug: 'some-post-title',
|
|
contentExcerpt: 'this is a post content',
|
|
author: {
|
|
id: 'john-1',
|
|
slug: 'john-doe',
|
|
name: 'John Doe',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
read: false,
|
|
reason: 'mentioned_in_comment',
|
|
from: {
|
|
__typename: 'Comment',
|
|
id: 'comment-2',
|
|
contentExcerpt: 'this is yet another post content',
|
|
post: {
|
|
id: 'post-1',
|
|
title: 'some post on a comment',
|
|
slug: 'some-post-on-a-comment',
|
|
contentExcerpt: 'this is a post content',
|
|
author: {
|
|
id: 'john-1',
|
|
slug: 'john-doe',
|
|
name: 'John Doe',
|
|
},
|
|
},
|
|
author: {
|
|
id: 'jane-1',
|
|
slug: 'jane-doe',
|
|
name: 'Jane Doe',
|
|
},
|
|
},
|
|
},
|
|
]
|