mirror of
https://github.com/SigNoz/signoz.git
synced 2026-02-03 08:33:26 +00:00
## 📄 Summary
- Instead of relying on JWT for session management, we are adding another token system: opaque. This gives the benefits of expiration and revocation.
- We are now ensuring that emails are regex checked throughout the backend.
- Support has been added for OIDC protocol
20 lines
284 B
SCSS
20 lines
284 B
SCSS
.auth-domain {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
|
|
.auth-domain-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.auth-domain-list {
|
|
.auth-domain-list-column-action {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 24px;
|
|
}
|
|
}
|