Skip to content

Instantly share code, notes, and snippets.

@xNok
Created April 5, 2021 02:33
Show Gist options
  • Save xNok/8db506ad3997600b8a64d306202dea93 to your computer and use it in GitHub Desktop.
Save xNok/8db506ad3997600b8a64d306202dea93 to your computer and use it in GitHub Desktop.
@startuml
actor USER as U
participant APP as A
participant SLACK as S
== App Home ==
autonumber
U -> S: Opens App Home Open
S -> A ++ #DarkSalmon: `app_home_opened` event triggered
A -> S --: `views.publish`
S -> U: Display The View in App Home
== Create Stickie note Triggered ==
autonumber 11
U -> S: Click button `Create Stickie note`
S -> A ++ #DarkSalmon: `Actions` interaction is triggered
A -> S --: `views.open`
S -> U: Opens modal
== Create Stickie note Submited ==
autonumber 21
U -> S: Submit modal `Create a stickie note`
S -> A ++ #DarkSalmon: `DialogSubmission` interaction is triggered
A -> S --: `views.publish`
S -> U: Update App Home
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment