-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new separate chat categories for images and project discussions
- Loading branch information
1 parent
632bc5e
commit 0271f28
Showing
6 changed files
with
78 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<template> | ||
<Head> | ||
<Title>Images & NFTs | {{ $config.projectMetadataTitle }}</Title> | ||
<Meta property="og:title" :content="'Images & NFTs | ' + $config.projectMetadataTitle" /> | ||
</Head> | ||
|
||
<ChatFeed | ||
class="mt-1" | ||
:showQuotedPost="$config.showRepliesOnHomepage" | ||
:allPosts="true" | ||
orbisContext="kjzl6cwe1jw1479cht4pqcgpqt0j9ly8m8vva27cksf2f79l5jeir1hu501uwnk" | ||
/> | ||
</template> | ||
|
||
<script> | ||
import ChatFeed from "../components/chat/ChatFeed.vue" | ||
export default { | ||
name: "memesnfts", | ||
components: { | ||
ChatFeed | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<template> | ||
<Head> | ||
<Title>Shill and discuss projects | {{ $config.projectMetadataTitle }}</Title> | ||
<Meta property="og:title" :content="'Shill and discuss projects | ' + $config.projectMetadataTitle" /> | ||
</Head> | ||
|
||
<ChatFeed | ||
class="mt-1" | ||
:showQuotedPost="$config.showRepliesOnHomepage" | ||
:allPosts="true" | ||
orbisContext="kjzl6cwe1jw14bdmgu97ybshws867hujblq8hx11jl8biypqokfhxv1ppwswhhx" | ||
/> | ||
</template> | ||
|
||
<script> | ||
import ChatFeed from "../components/chat/ChatFeed.vue" | ||
export default { | ||
name: "shill", | ||
components: { | ||
ChatFeed | ||
} | ||
} | ||
</script> |