Hiding username/password logins in favour of OAuth buttons?

Hey all,

New to Vikunja thanks to the Member Matters project and it’s looking like a fantastic alternative for our makerspace to migrate to from Trello.

I’ve got it setup nicely and working with login via OAuth, but I’m wondering if there’s a configuration flag to disable the username/password login completely so that users must login via OAuth?

I’ve disabled new user registration, now I’d like to remove the login box entirely to avoid any confusion from some of our users and reduce the number of support requests because they don’t know their login details.

We’re complimenting this via the documentation, but removing it completely would be our preferred option!

Welcome!

You can just disable local auth:

auth:
  local:
    enabled: false
  openid:
    enabled: true
    ...
1 Like

Oh, perfect, thanks!