How can I disable the login screen in Elsa Studio 3.2.0 #286
Unanswered
jirimatejka
asked this question in
Q&A
Replies: 1 comment
-
Not sure if this helps but the entire security can be disabled in Elsa by adding the below line to the Program.cs : Elsa.EndpointSecurityOptions.DisableSecurity(); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an Elsa Studio app, where I modified the server authentication to use api key, the key is sent with each request to Elsa server and the server accepts it. I need to disable to Elsa studio login screen... How can I do it?
I found a recommendation to use
builder.Services.AddShell(options => configuration.GetSection("Shell").Bind(options));
and modify appsettings with
"Shell": {
"DisableAuthorization": true
}
but it does not work, the login screen is still displayed.
thanks!
Jiri
Beta Was this translation helpful? Give feedback.
All reactions