Documentation
¶
Index ¶
- Constants
- type AllRetiredApplicationsPurged
- type ApplicationCreated
- type ApplicationRetired
- type ApplicationSettingsChanged
- type AuthorizationGranted
- type AuthorizationRevoked
- type EmailInviteSent
- type EmailPasswordRecoverySent
- type EmailSignupConfirmSent
- type RoleCreated
- type RoleDeleted
- type TokenAlreadyRedeemed
- type TokenRevoked
- type UserAddedToRole
- type UserBanned
- type UserConfirmed
- type UserEmailChanged
- type UserInviteConsumed
- type UserInvited
- type UserLocked
- type UserLogin
- type UserMFADisabled
- type UserMFAEnabled
- type UserPasswordChanged
- type UserPasswordRecoveryRequested
- type UserPasswordRecoveryUsed
- type UserRemovedFromRole
- type UserSignedInByToken
- type UserSignup
- type UserUnbanned
- type UserUnlocked
Constants ¶
View Source
const ( UserInvitedEvent events.EventName = "user_invited" UserInviteConsumedEvent events.EventName = "user_invite_consumed" UserConfirmedEvent events.EventName = "user_confirmed" UserSignupEvent events.EventName = "user_signup" UserLockedEvent events.EventName = "user_locked" UserUnlockedEvent events.EventName = "user_unlocked" UserSignedInByTokenEvent events.EventName = "user_token_signin" UserBannedEvent events.EventName = "user_banned" UserUnbannedEvent events.EventName = "user_unbanned" UserLoginEvent events.EventName = "user_login" UserMFAEnabledEvent events.EventName = "user_mfa_enabled" UserMFADisabledEvent events.EventName = "user_mfa_disabled" UserPasswordRecoveryRequestedEvent events.EventName = "user_password_recovery_requested" UserPasswordRecoveryUsedEvent events.EventName = "user_password_recovery_used" UserEmailChangedEvent events.EventName = "user_email_changed" UserPasswordChangedEvent events.EventName = "user_password_changed" UserRemovedFromRoleEvent events.EventName = "user_removed_from_role" UserAddedToRoleEvent events.EventName = "user_added_to_role" AuthorizationGrantedEvent events.EventName = "authorization_granted" AuthorizationRevokedEvent events.EventName = "authorization_revoked" TokenAlreadyRedeemedEvent events.EventName = "token_already_redeemed" TokenRevokedEvent events.EventName = "token_revoked" EmailPasswordRecoverySentEvent events.EventName = "email_password_recovery_sent" EmailSignupConfirmSentEvent events.EventName = "email_signup_confirm_sent" EmailInviteSentEvent events.EventName = "email_invite_sent" ApplicationCreatedEvent events.EventName = "application_created" ApplicationRetiredEvent events.EventName = "application_retired" ApplicationSettingsChangedEvent events.EventName = "application_changed" AllRetiredApplicationsPurgedEvent events.EventName = "retired_applications_purged" RoleCreatedEvent events.EventName = "role_created" RoleDeletedEvent events.EventName = "role_deleted" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AllRetiredApplicationsPurged ¶
type AllRetiredApplicationsPurged struct {
AffectedClientIDs []string
}
func (*AllRetiredApplicationsPurged) Name ¶
func (*AllRetiredApplicationsPurged) Name() events.EventName
type ApplicationCreated ¶
func (*ApplicationCreated) Name ¶
func (*ApplicationCreated) Name() events.EventName
type ApplicationRetired ¶
func (*ApplicationRetired) Name ¶
func (*ApplicationRetired) Name() events.EventName
type ApplicationSettingsChanged ¶
type ApplicationSettingsChanged struct { ApplicationID int ClientID string ApplicationName string Property string Value string }
func (*ApplicationSettingsChanged) Name ¶
func (*ApplicationSettingsChanged) Name() events.EventName
type AuthorizationGranted ¶
type AuthorizationGranted struct { AuthorizationID uuid.UUID UserID uuid.UUID ApplicationID int Scopes []string }
func (*AuthorizationGranted) Name ¶
func (*AuthorizationGranted) Name() events.EventName
type AuthorizationRevoked ¶
type AuthorizationRevoked struct { AuthorizationID uuid.UUID UserID uuid.UUID ApplicationID int TokensAffected int64 }
func (*AuthorizationRevoked) Name ¶
func (*AuthorizationRevoked) Name() events.EventName
type EmailInviteSent ¶
func (*EmailInviteSent) Name ¶
func (*EmailInviteSent) Name() events.EventName
type EmailPasswordRecoverySent ¶
type EmailPasswordRecoverySent struct { UserID uuid.UUID ConfirmToken string Email string Sent time.Time }
func (*EmailPasswordRecoverySent) Name ¶
func (*EmailPasswordRecoverySent) Name() events.EventName
type EmailSignupConfirmSent ¶
type EmailSignupConfirmSent struct { UserID uuid.UUID ConfirmToken string Email string Sent time.Time }
func (*EmailSignupConfirmSent) Name ¶
func (*EmailSignupConfirmSent) Name() events.EventName
type RoleCreated ¶
type RoleCreated struct {
Role string
}
func (*RoleCreated) Name ¶
func (*RoleCreated) Name() events.EventName
type RoleDeleted ¶
type RoleDeleted struct {
Role string
}
func (*RoleDeleted) Name ¶
func (*RoleDeleted) Name() events.EventName
type TokenAlreadyRedeemed ¶
type TokenAlreadyRedeemed struct { TokenID int AuthorizationID uuid.UUID UserID uuid.UUID Token string TokenType string }
func (*TokenAlreadyRedeemed) Name ¶
func (*TokenAlreadyRedeemed) Name() events.EventName
type TokenRevoked ¶
type TokenRevoked struct { TokenID int AuthorizationID uuid.UUID UserID uuid.UUID Token string TokenType string }
func (*TokenRevoked) Name ¶
func (*TokenRevoked) Name() events.EventName
type UserAddedToRole ¶
func (*UserAddedToRole) Name ¶
func (*UserAddedToRole) Name() events.EventName
type UserBanned ¶
func (*UserBanned) Name ¶
func (*UserBanned) Name() events.EventName
type UserConfirmed ¶
func (*UserConfirmed) Name ¶
func (*UserConfirmed) Name() events.EventName
type UserEmailChanged ¶
func (*UserEmailChanged) Name ¶
func (*UserEmailChanged) Name() events.EventName
type UserInviteConsumed ¶
func (*UserInviteConsumed) Name ¶
func (*UserInviteConsumed) Name() events.EventName
type UserInvited ¶
func (*UserInvited) Name ¶
func (*UserInvited) Name() events.EventName
type UserLocked ¶
func (*UserLocked) Name ¶
func (*UserLocked) Name() events.EventName
type UserMFADisabled ¶
func (*UserMFADisabled) Name ¶
func (*UserMFADisabled) Name() events.EventName
type UserMFAEnabled ¶
func (*UserMFAEnabled) Name ¶
func (*UserMFAEnabled) Name() events.EventName
type UserPasswordChanged ¶
func (*UserPasswordChanged) Name ¶
func (*UserPasswordChanged) Name() events.EventName
type UserPasswordRecoveryRequested ¶
func (*UserPasswordRecoveryRequested) Name ¶
func (*UserPasswordRecoveryRequested) Name() events.EventName
type UserPasswordRecoveryUsed ¶
func (*UserPasswordRecoveryUsed) Name ¶
func (*UserPasswordRecoveryUsed) Name() events.EventName
type UserRemovedFromRole ¶
func (*UserRemovedFromRole) Name ¶
func (*UserRemovedFromRole) Name() events.EventName
type UserSignedInByToken ¶
func (*UserSignedInByToken) Name ¶
func (*UserSignedInByToken) Name() events.EventName
type UserSignup ¶
func (*UserSignup) Name ¶
func (*UserSignup) Name() events.EventName
type UserUnbanned ¶
func (*UserUnbanned) Name ¶
func (*UserUnbanned) Name() events.EventName
type UserUnlocked ¶
func (*UserUnlocked) Name ¶
func (*UserUnlocked) Name() events.EventName
Click to show internal directories.
Click to hide internal directories.