Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProjectRepository ¶
type ProjectRepository interface { Create(ctx context.Context, project *project.Project) error Get(ctx context.Context, projectID string) (*project.Project, error) GetByAPIKey(ctx context.Context, apiKey string) (*project.Project, error) Delete(ctx context.Context, projectID string) error AddAllowedOrigin(ctx context.Context, projectID, origin string) error RemoveAllowedOrigin(ctx context.Context, projectID, origin string) error GetAllowedOrigins(ctx context.Context, projectID string) ([]string, error) GetAllowedOriginsByAPIKey(ctx context.Context, apiKey string) ([]string, error) GetEncryptionPart(ctx context.Context, projectID string) (string, error) SetEncryptionPart(ctx context.Context, projectID, part string) error }
type ProviderRepository ¶
type ProviderRepository interface { Create(ctx context.Context, prov *provider.Provider) error Get(ctx context.Context, id string) (*provider.Provider, error) GetByProjectAndType(ctx context.Context, projectID string, providerType provider.Type) (*provider.Provider, error) List(ctx context.Context, projectID string) ([]*provider.Provider, error) Delete(ctx context.Context, providerID string) error CreateCustom(ctx context.Context, provider *provider.CustomConfig) error GetCustom(ctx context.Context, providerID string) (*provider.CustomConfig, error) UpdateCustom(ctx context.Context, provider *provider.CustomConfig) error CreateOpenfort(ctx context.Context, provider *provider.OpenfortConfig) error GetOpenfort(ctx context.Context, providerID string) (*provider.OpenfortConfig, error) UpdateOpenfort(ctx context.Context, provider *provider.OpenfortConfig) error }
type ShareRepository ¶
type ShareRepository interface {}
type UserRepository ¶
type UserRepository interface { Create(ctx context.Context, user *user.User) error Get(ctx context.Context, userID string) (*user.User, error) CreateExternal(ctx context.Context, user *user.ExternalUser) error FindExternalBy(ctx context.Context, opts ...Option) ([]*user.ExternalUser, error) WithUserID(userID string) Option WithExternalUserID(externalUserID string) Option WithProviderID(providerID string) Option }
Click to show internal directories.
Click to hide internal directories.