Documentation
¶
Index ¶
- func NewLoaderContext(ctx context.Context, dbConn *pgxpool.Pool) context.Context
- type RoleAssignedUserSyncLogEntry
- type RoleRevokedUserSyncLogEntry
- type UserCreatedUserSyncLogEntry
- type UserDeletedUserSyncLogEntry
- type UserSyncLogEntry
- type UserSyncLogEntryConnection
- type UserSyncLogEntryEdge
- type UserUpdatedUserSyncLogEntry
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type RoleAssignedUserSyncLogEntry ¶
type RoleAssignedUserSyncLogEntry struct { RoleName string `json:"roleName"` // contains filtered or unexported fields }
func (RoleAssignedUserSyncLogEntry) IsUserSyncLogEntry ¶
func (RoleAssignedUserSyncLogEntry) IsUserSyncLogEntry()
func (RoleAssignedUserSyncLogEntry) WithMessage ¶
func (l RoleAssignedUserSyncLogEntry) WithMessage(message string) userSyncLogEntry
type RoleRevokedUserSyncLogEntry ¶
type RoleRevokedUserSyncLogEntry struct { RoleName string `json:"roleName"` // contains filtered or unexported fields }
func (RoleRevokedUserSyncLogEntry) IsUserSyncLogEntry ¶
func (RoleRevokedUserSyncLogEntry) IsUserSyncLogEntry()
func (RoleRevokedUserSyncLogEntry) WithMessage ¶
func (l RoleRevokedUserSyncLogEntry) WithMessage(message string) userSyncLogEntry
type UserCreatedUserSyncLogEntry ¶
type UserCreatedUserSyncLogEntry struct {
// contains filtered or unexported fields
}
func (UserCreatedUserSyncLogEntry) IsUserSyncLogEntry ¶
func (UserCreatedUserSyncLogEntry) IsUserSyncLogEntry()
func (UserCreatedUserSyncLogEntry) WithMessage ¶
func (l UserCreatedUserSyncLogEntry) WithMessage(message string) userSyncLogEntry
type UserDeletedUserSyncLogEntry ¶
type UserDeletedUserSyncLogEntry struct {
// contains filtered or unexported fields
}
func (UserDeletedUserSyncLogEntry) IsUserSyncLogEntry ¶
func (UserDeletedUserSyncLogEntry) IsUserSyncLogEntry()
func (UserDeletedUserSyncLogEntry) WithMessage ¶
func (l UserDeletedUserSyncLogEntry) WithMessage(message string) userSyncLogEntry
type UserSyncLogEntry ¶
type UserSyncLogEntryConnection ¶
type UserSyncLogEntryConnection = pagination.Connection[UserSyncLogEntry]
func ListLogEntries ¶
func ListLogEntries(ctx context.Context, page *pagination.Pagination) (*UserSyncLogEntryConnection, error)
type UserSyncLogEntryEdge ¶
type UserSyncLogEntryEdge = pagination.Edge[UserSyncLogEntry]
type UserUpdatedUserSyncLogEntry ¶
type UserUpdatedUserSyncLogEntry struct { OldUserName string `json:"oldUserName"` OldUserEmail string `json:"oldUserEmail"` // contains filtered or unexported fields }
func (UserUpdatedUserSyncLogEntry) IsUserSyncLogEntry ¶
func (UserUpdatedUserSyncLogEntry) IsUserSyncLogEntry()
func (UserUpdatedUserSyncLogEntry) WithMessage ¶
func (l UserUpdatedUserSyncLogEntry) WithMessage(message string) userSyncLogEntry
Click to show internal directories.
Click to hide internal directories.