mirror of
https://github.com/status-im/status-go.git
synced 2025-02-16 08:50:09 +00:00
Ensure ChatIds
are handled by token permission requests
This commit is contained in:
parent
83ed3e5ede
commit
3f231f53e3
@ -22,6 +22,7 @@ type CreateCommunityTokenPermission struct {
|
||||
Type protobuf.CommunityTokenPermission_Type `json:"type"`
|
||||
TokenCriteria []*protobuf.TokenCriteria `json:"tokenCriteria"`
|
||||
IsPrivate bool `json:"isPrivate"`
|
||||
ChatIds []string `json:"chat_ids"`
|
||||
}
|
||||
|
||||
func (p *CreateCommunityTokenPermission) Validate() error {
|
||||
@ -56,5 +57,6 @@ func (p *CreateCommunityTokenPermission) ToCommunityTokenPermission() protobuf.C
|
||||
Type: p.Type,
|
||||
TokenCriteria: p.TokenCriteria,
|
||||
IsPrivate: p.IsPrivate,
|
||||
ChatIds: p.ChatIds,
|
||||
}
|
||||
}
|
||||
|
@ -28,5 +28,6 @@ func (u *EditCommunityTokenPermission) ToCommunityTokenPermission() protobuf.Com
|
||||
Id: u.PermissionID,
|
||||
Type: u.Type,
|
||||
TokenCriteria: u.TokenCriteria,
|
||||
ChatIds: u.ChatIds,
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user