add more privileges to API user.

This commit is contained in:
Miroslav Šedivý 2021-03-15 16:28:38 +01:00
parent 45c9d0c120
commit 0824c24bf6

View File

@ -33,9 +33,13 @@ func New(config *config.Session) *SessionManagerCtx {
manager: manager, manager: manager,
logger: manager.logger.With().Str("session_id", "API").Logger(), logger: manager.logger.With().Str("session_id", "API").Logger(),
profile: types.MemberProfile{ profile: types.MemberProfile{
Name: "API Session", Name: "API Session",
IsAdmin: true, IsAdmin: true,
CanLogin: true, CanLogin: true,
CanConnect: false,
CanWatch: true,
CanHost: true,
CanAccessClipboard: true,
}, },
} }
} }