Skip to content

Commit

Permalink
fix prontogram data structures
Browse files Browse the repository at this point in the history
  • Loading branch information
davspada committed Jul 6, 2024
1 parent 91a36c1 commit 611b206
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/services/prontogram.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Strutture dati (custom types) necessarie per le richieste e risposte sono descri
type loginRequest{
.username: string
.password: string
.sid?: string
}
type logoutRequest{
Expand Down Expand Up @@ -103,7 +104,8 @@ type prontoResponse :void{
type sendMessageRequest{
.message: string
.username: string
.expiration?: string
.expiration: string
.sid?: string
}
```
Nelle strutture, l'attributo ```sid``` è l'identificatore univoco generato dal server Jolie per il managing delle sessioni utente, che agirà come valore del cookie in grado di gestire l'autenticazione.
Expand Down

0 comments on commit 611b206

Please sign in to comment.