aboutsummaryrefslogtreecommitdiff
path: root/pkg/components/user/model.go
blob: ce1b3a5986e2782ab36ae08dd05f02862f2d01a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package user

import "context"

type (
	User struct {
		ID       uint
		Username string
		Name     string
		IsAdmin  bool
		Path     string
	}

	UpdateUser struct {
		Username string
		Name     string
		Password *string
	}

	CreateUser struct {
		Username string
		Name     string
		Password []byte
		IsAdmin  bool
		Path     string
	}

	Repository interface {
		List(ctx context.Context) ([]*User, error)
		Create(ctx context.Context, createUser *CreateUser) error
		Update(ctx context.Context, id uint, updateUser *UpdateUser) error
		Any(ctx context.Context) (bool, error)
	}
)