Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 882 Bytes

File metadata and controls

22 lines (20 loc) · 882 Bytes

Routes

/api/v1
├── /ping (GET)             - health check
├── /auth
│	├── /login (POST)         - auth user
│	├── /signup (POST)        - create new user
│ ├── /logout (POST)        - logout
│ └── /google/callback (GET)  - callback for google auth 
├── /settings (GET)         - fetch settings
├── /settings (PATCH)       - save settings
├── /google
│   ├── /events (GET)       - fetch calendar events
│   ├── /calendars (GET)    - fetch calendar list
│   └── /auth-link (GET)    - get auth url
├── /ai (POST)              - generate summary with ai
└── /jira/worklog (POST)    - save worklog in Jira

Development

  • Run proxy for handling Google OAuth on localhost ngrok http 5001 then copy Forwarding URL to the .env and to the Google Console for redirect uri