Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

As a content creator, I want to create a post on Discord so that it is also created on my website #1

Open
Jester0027 opened this issue Nov 23, 2023 · 0 comments · May be fixed by #4
Open
Assignees

Comments

@Jester0027
Copy link
Owner

Jester0027 commented Nov 23, 2023

sequenceDiagram
actor user as Content creator
participant discord as Discord server
participant server as Server/Website
participant db as Database
user->>discord: Creates a new post
discord->>server: Sends a notification that<br/> a new post has been created
server->>db: Saves the post
Loading
sequenceDiagram
actor user as User
participant website as Website
participant db as Database
user->>website: Go see post with id 123
website->>db: Fetches post with id 123
db->>website: 
website->>website: Renders markdown to html
website->>user: 200 OK - shows post as html
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant