Documentation ¶
Index ¶
- type EmptyUserNotifier
- func (e *EmptyUserNotifier) SendEmailVerification(opts *SendEmailVerificationOpts) error
- func (e *EmptyUserNotifier) SendGithubRelinkEmail(opts *SendGithubRelinkEmailOpts) error
- func (e *EmptyUserNotifier) SendPasswordResetEmail(opts *SendPasswordResetEmailOpts) error
- func (e *EmptyUserNotifier) SendProjectInviteEmail(opts *SendProjectInviteEmailOpts) error
- type SendEmailVerificationOpts
- type SendGithubRelinkEmailOpts
- type SendPasswordResetEmailOpts
- type SendProjectInviteEmailOpts
- type UserNotifier
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EmptyUserNotifier ¶
type EmptyUserNotifier struct{}
func (*EmptyUserNotifier) SendEmailVerification ¶
func (e *EmptyUserNotifier) SendEmailVerification(opts *SendEmailVerificationOpts) error
func (*EmptyUserNotifier) SendGithubRelinkEmail ¶
func (e *EmptyUserNotifier) SendGithubRelinkEmail(opts *SendGithubRelinkEmailOpts) error
func (*EmptyUserNotifier) SendPasswordResetEmail ¶
func (e *EmptyUserNotifier) SendPasswordResetEmail(opts *SendPasswordResetEmailOpts) error
func (*EmptyUserNotifier) SendProjectInviteEmail ¶
func (e *EmptyUserNotifier) SendProjectInviteEmail(opts *SendProjectInviteEmailOpts) error
type UserNotifier ¶
type UserNotifier interface { SendPasswordResetEmail(opts *SendPasswordResetEmailOpts) error SendGithubRelinkEmail(opts *SendGithubRelinkEmailOpts) error SendEmailVerification(opts *SendEmailVerificationOpts) error SendProjectInviteEmail(opts *SendProjectInviteEmailOpts) error }
Click to show internal directories.
Click to hide internal directories.