mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-22 10:14:24 +08:00

* fix: login/precheck api in non-ee variant * fix: add return statement * fix: make skip config empty --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com> Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
13 lines
291 B
Go
13 lines
291 B
Go
package model
|
|
|
|
import (
|
|
basemodel "go.signoz.io/signoz/pkg/query-service/model"
|
|
)
|
|
|
|
// GettableInvitation overrides base object and adds precheck into
|
|
// response
|
|
type GettableInvitation struct {
|
|
*basemodel.InvitationResponseObject
|
|
Precheck *basemodel.PrecheckResponse `json:"precheck"`
|
|
}
|