~ckyb


#30 Delete user option 1 year, 19 days ago

Ticket created by ~ckyb on ~emersion/sinwon

There is an option to "Delete client", although no option to delete a user.

Would any tokens need to be revoked for the user upon deletion?

#28 Dark theme 1 year, 20 days ago

Comment by ~ckyb on ~emersion/sinwon

Throwing this at the bottom of static/style.css fulfilled my needs - it uses the sourcehut color background/nav colors. Not sure if this is what you had in mind.

If this is sufficient, I'd be happy to throw up a patch - anyone else is free to commit this too.

@media (prefers-color-scheme: dark) {
  body {
    background: #212529;
    color: #f8f9fa;
  }

  body a {
    color: #809fff;
  }
	
  button {
    color: #f8f9fa;
  }

  nav {
    background: #131618;
  }
}