-
Notifications
You must be signed in to change notification settings - Fork 398
Description
Preconditions (Any important steps we need to know)
Steps to reproduce (How to reproduce what you found step by step)
docker run --name redis-insights -p 5540:5540 -d redis/redisinsight
- Before hitting the app, Send a PATCH request to
/api/settings
with the following:
{
"agreements": {
"eula": false,
"analytics": false,
"notifications": false,
"encryption": false
}
}
- Navigate to the UI - http://localhost:5540/
Actual behavior (A short description of what you found)
The "first run" dialog isn't popped when first hitting the UI
Expected behavior (A short description of what you expected to find)
I expect to get this dialog because the EULA wasn't accepted yet:
Additional context (Operating system, version of Redis Insight, Redis database version, Redis module version, database type, connection type, logs, or any other information)
The reason I am sending this request is to work around #3452. I need to add a redis connection using a password, but that doesn't work unless encryption: false
gets set in the settings. And it isn't valid to send a settings request without specificing eula
. I don't want to auto accept the EULA.