console

package
v1.24.0-rc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 18, 2021 License: AGPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrNoMember = errs.Class("no such member")

ErrNoMember is a special error type that indicates about absence of member in MembersDB.

Functions

This section is empty.

Types

type Member added in v1.17.1

type Member struct {
	ID           uuid.UUID
	Email        string
	Name         string
	PasswordHash []byte
}

Member represents some person that is invited to the MND by node owner. Member will have configurable access privileges that will define which functions and which nodes are available for him.

type Members added in v1.17.1

type Members interface {
	// Invite will create empty row in membersDB.
	Invite(ctx context.Context, member Member) error
	// Update updates all updatable fields of member.
	Update(ctx context.Context, member Member) error
	// Remove deletes member from membersDB.
	Remove(ctx context.Context, id uuid.UUID) error
	// GetByEmail will return member with specified email.
	GetByEmail(ctx context.Context, email string) (Member, error)
	// GetByID will return member with specified id.
	GetByID(ctx context.Context, id uuid.UUID) (Member, error)
}

Members exposes needed by MND MembersDB functionality.

architecture: Database

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL