diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-07-04 18:38:10 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-07-04 18:40:02 +0200 |
commit | 311ab744fe1bf278b18c25892497271988399e9a (patch) | |
tree | 89f956f521000ac0d22f815e91cab4cf00a8b70f /pkg/database/repository | |
parent | c2d666b43477ea7042b574ad940c508216cb0e83 (diff) | |
download | lens-311ab744fe1bf278b18c25892497271988399e9a.tar.gz lens-311ab744fe1bf278b18c25892497271988399e9a.tar.bz2 lens-311ab744fe1bf278b18c25892497271988399e9a.zip |
feat: Add user based files
Now files follow user path configuration
Diffstat (limited to 'pkg/database/repository')
-rw-r--r-- | pkg/database/repository/user.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/database/repository/user.go b/pkg/database/repository/user.go index f8bd719..3589007 100644 --- a/pkg/database/repository/user.go +++ b/pkg/database/repository/user.go @@ -27,6 +27,7 @@ type ( UserRepository interface { Get(ctx context.Context, id uint) (*User, error) + GetPathFromUserID(ctx context.Context, id uint) (string, error) List(ctx context.Context) ([]*User, error) Create(ctx context.Context, createUser *CreateUser) (uint, error) Update(ctx context.Context, id uint, updateUser *UpdateUser) error |