Merge pull request #5630 from GabrielInTheWorld/update-auth-service-interface

Update auth-service's interface and auth-service
This commit is contained in:
Finn Stutzenstein 2020-10-14 07:55:58 +02:00 committed by GitHub
commit 77c03b5675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -32,6 +32,12 @@ Interface Ticket {
}
}
// This describes, which information is received by requesting `api/authenticate`.
interface LoginInformation {
userId: number;
sessionId: string;
}
/**
* Describes an http-response, which is sent back to any requesting service.
*/
@ -39,9 +45,10 @@ Interface Response <T> {
// Optional headers, which are set in an http-response
httpHeaders: {
// Authentication is passed, if a new access-token is returned.
// It is written with a capital 'A', so the value of this header is 'Authentication: "..."'.
authentication?: string,
// Cookies, like one containing 'refreshId=(Cookie as string)', if a user signs in, are passed.
// Lifetime of one cookie is about 24h.
// Lifetime of one cookie is the browser-session.
// Flags for the cookies are: HttpOnly, Secure
cookies: {
[name: string]: string

@ -1 +1 @@
Subproject commit b014ac46ec34d79dc5a27f3de4ec8e4669669553
Subproject commit e400ea34ad3750d22ea3f3a7130df3492fabf306