mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Remove xorm tags
This commit is contained in:
parent
c4c498e55b
commit
526e48ad45
@ -22,22 +22,22 @@ type ExternalServiceDTO struct {
|
||||
Name string `json:"name"`
|
||||
ID string `json:"clientId"`
|
||||
Secret string `json:"clientSecret"`
|
||||
GrantTypes string `json:"grantTypes"` // CSV value
|
||||
Audiences string `json:"audiences"` // CSV value
|
||||
RedirectURI string `json:"redirectUri,omitempty"`
|
||||
RedirectURI string `json:"redirectUri,omitempty"` // Not used yet (code flow)
|
||||
GrantTypes string `json:"grantTypes"` // CSV value
|
||||
Audiences string `json:"audiences"` // CSV value
|
||||
KeyResult *KeyResult `json:"key,omitempty"`
|
||||
}
|
||||
|
||||
type ExternalService struct {
|
||||
ID int64 `xorm:"id pk autoincr"`
|
||||
Name string `xorm:"name"`
|
||||
ClientID string `xorm:"client_id"`
|
||||
Secret string `xorm:"secret"`
|
||||
RedirectURI string `xorm:"redirect_uri"` // Not used yet (code flow)
|
||||
GrantTypes string `xorm:"grant_types"` // CSV value
|
||||
Audiences string `xorm:"audiences"` // CSV value
|
||||
PublicPem []byte `xorm:"public_pem"`
|
||||
ServiceAccountID int64 `xorm:"service_account_id"`
|
||||
ID int64
|
||||
Name string
|
||||
ClientID string
|
||||
Secret string
|
||||
RedirectURI string // Not used yet (code flow)
|
||||
GrantTypes string // CSV value
|
||||
Audiences string // CSV value
|
||||
PublicPem []byte
|
||||
ServiceAccountID int64
|
||||
// SelfPermissions are the registered service account permissions (registered and managed permissions)
|
||||
SelfPermissions []ac.Permission
|
||||
// ImpersonatePermissions is the restriction set of permissions while impersonating
|
||||
|
Loading…
Reference in New Issue
Block a user