mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
add plugins to member profile.
This commit is contained in:
parent
d5425ea457
commit
52642dbeb6
@ -10,6 +10,8 @@ var (
|
|||||||
|
|
||||||
type MemberProfile struct {
|
type MemberProfile struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
|
||||||
|
// permissions
|
||||||
IsAdmin bool `json:"is_admin"`
|
IsAdmin bool `json:"is_admin"`
|
||||||
CanLogin bool `json:"can_login"`
|
CanLogin bool `json:"can_login"`
|
||||||
CanConnect bool `json:"can_connect"`
|
CanConnect bool `json:"can_connect"`
|
||||||
@ -19,6 +21,9 @@ type MemberProfile struct {
|
|||||||
CanAccessClipboard bool `json:"can_access_clipboard"`
|
CanAccessClipboard bool `json:"can_access_clipboard"`
|
||||||
SendsInactiveCursor bool `json:"sends_inactive_cursor"`
|
SendsInactiveCursor bool `json:"sends_inactive_cursor"`
|
||||||
CanSeeInactiveCursors bool `json:"can_see_inactive_cursors"`
|
CanSeeInactiveCursors bool `json:"can_see_inactive_cursors"`
|
||||||
|
|
||||||
|
// plugin scope
|
||||||
|
Plugins map[string]any `json:"plugins"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type MemberProvider interface {
|
type MemberProvider interface {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user