mirror of
https://github.com/paralus/paralus.git
synced 2026-02-14 17:49:51 +00:00
The following could be used as an optimisation when we are filtering
just by user, but decided to omit as of now.
```
usrs, err = dao.ListFilteredUsersWithGroup(ctx, s.db,
[]uuid.UUID{}, groupId, queryOptions.Q, queryOptions.Type,
queryOptions.OrderBy, queryOptions.Order,
int(queryOptions.Limit), int(queryOptions.Offset))
```
26 lines
848 B
Go
26 lines
848 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/uptrace/bun"
|
|
)
|
|
|
|
type GroupAccount struct {
|
|
bun.BaseModel `bun:"table:authsrv_groupaccount,alias:groupaccount"`
|
|
|
|
ID uuid.UUID `bun:"id,type:uuid,pk,default:uuid_generate_v4()"`
|
|
Name string `bun:"name,notnull"`
|
|
Description string `bun:"description,notnull"`
|
|
CreatedAt time.Time `bun:"created_at,notnull,default:current_timestamp"`
|
|
ModifiedAt time.Time `bun:"modified_at,notnull,default:current_timestamp"`
|
|
Trash bool `bun:"trash,notnull,default:false"`
|
|
AccountId uuid.UUID `bun:"account_id,type:uuid"`
|
|
GroupId uuid.UUID `bun:"group_id,type:uuid"`
|
|
Active bool `bun:"active,notnull"`
|
|
|
|
Account *KratosIdentities `bun:"rel:has-one,join:account_id=id"`
|
|
Group *Group `bun:"rel:has-one,join:group_id=id"`
|
|
}
|