Documentation ¶
Index ¶
- type IntegrationKey
- type Store
- func (s *Store) Authorize(ctx context.Context, tok authtoken.Token, t Type) (context.Context, error)
- func (s *Store) Create(ctx context.Context, i *IntegrationKey) (*IntegrationKey, error)
- func (s *Store) CreateKeyTx(ctx context.Context, tx *sql.Tx, i *IntegrationKey) (*IntegrationKey, error)
- func (s *Store) Delete(ctx context.Context, id string) error
- func (s *Store) DeleteManyTx(ctx context.Context, tx *sql.Tx, ids []string) error
- func (s *Store) DeleteTx(ctx context.Context, tx *sql.Tx, id string) error
- func (s *Store) FindAllByService(ctx context.Context, serviceID string) ([]IntegrationKey, error)
- func (s *Store) FindOne(ctx context.Context, id string) (*IntegrationKey, error)
- func (s *Store) GetServiceID(ctx context.Context, id string, t Type) (string, error)
- type Type
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IntegrationKey ¶
type IntegrationKey struct { ID string `json:"id"` Name string `json:"name"` Type Type `json:"type"` ServiceID string `json:"service_id"` }
func (IntegrationKey) Normalize ¶
func (i IntegrationKey) Normalize() (*IntegrationKey, error)
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
func (*Store) Create ¶
func (s *Store) Create(ctx context.Context, i *IntegrationKey) (*IntegrationKey, error)
func (*Store) CreateKeyTx ¶
func (s *Store) CreateKeyTx(ctx context.Context, tx *sql.Tx, i *IntegrationKey) (*IntegrationKey, error)
func (*Store) DeleteManyTx ¶
func (*Store) FindAllByService ¶
Click to show internal directories.
Click to hide internal directories.