Refresh

This website github-wiki-see.page/m/BdevC/timelog/wiki/Activity-Diagram is currently offline. Cloudflare's Always Online™ shows a snapshot of this web page from the Internet Archive's Wayback Machine. To check for the live version, click Refresh.

Activity Diagram - BdevC/timelog GitHub Wiki

Guest Service

---
title: Guest service
---
stateDiagram-v2
    state GuestService {
       Land: Landing Page
       Auth: Authorization
       Reg: Registration
       [*] --> Land
       Land --> Auth
       Land --> Reg
       Reg --> Auth
       Auth --> [*]: To Dashboard
    }
---
title: Dashboard
---
stateDiagram-v2
    Log: Log Book
    Edit: Edit(Add/Delete)
    Viz: Visualization

    state DatabaseService {
        Database
    }

    state Dashboardservice {
        [*] --> Dashboard: From Landing
        Dashboard --> Log
        Log --> Edit
        Log --> Viz
    }