orgInt64Ptr renders an optional org config integer (nil or 0 == unset) for audit detail.
(v *int64)
| 710 | } |
| 711 | |
| 712 | func (s *gormAPIStore) ListServiceGrants(orgID string) ([]configstore.ServiceGrant, error) { |
| 713 | return s.store.ListServiceGrants(orgID) |
| 714 | } |
| 715 | |
| 716 | func (s *gormAPIStore) RevokeServiceGrant(orgID, credentialID string) error { |
| 717 | return s.store.RevokeServiceGrant(orgID, credentialID) |
| 718 | } |
| 719 | |
| 720 | func (s *gormAPIStore) ReloadSnapshot() error { |