mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

* fix: support multitenancy in org * fix: register and login working now * fix: changes to migration * fix: migrations run both on sqlite and postgres * fix: remove user flags from fe and be * fix: remove ingestion keys from update * fix: multitenancy support for apdex settings * fix: render ts for users correctly * fix: fix migration to run for new tenants * fix: clean up migrations * fix: address comments * Update pkg/sqlmigration/013_update_organization.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: fix build * fix: force invites with org id * Update pkg/query-service/auth/auth.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: address comments * fix: address comments * fix: provier with their own dialect * fix: update dialects * fix: remove unwanted change * Update pkg/query-service/app/http_handler.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: different files for types --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
18 lines
513 B
Go
18 lines
513 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type ResetPasswordRequest struct {
|
|
Password string `json:"password"`
|
|
Token string `json:"token"`
|
|
}
|
|
|
|
type IngestionKey struct {
|
|
KeyId string `json:"keyId" db:"key_id"`
|
|
Name string `json:"name" db:"name"`
|
|
CreatedAt time.Time `json:"createdAt" db:"created_at"`
|
|
IngestionKey string `json:"ingestionKey" db:"ingestion_key"`
|
|
IngestionURL string `json:"ingestionURL" db:"ingestion_url"`
|
|
DataRegion string `json:"dataRegion" db:"data_region"`
|
|
}
|