mirror of
https://github.com/gitbucket/gitbucket.git
synced 2026-01-04 14:50:02 +01:00
As is, the unsuspend API cannot unsuspend since it's not searching suspended accounts. This should allow the api to function without getting a 404. (#2660)
Co-authored-by: Jason Southwell <jsouthwell@sivv.com>
This commit is contained in:
@@ -104,7 +104,7 @@ trait ApiUserControllerBase extends ControllerBase {
|
||||
*/
|
||||
delete("/api/v3/users/:userName/suspended")(adminOnly {
|
||||
val userName = params("userName")
|
||||
getAccountByUserName(userName) match {
|
||||
getAccountByUserName(userName, true) match {
|
||||
case Some(targetAccount) =>
|
||||
updateAccount(targetAccount.copy(isRemoved = false))
|
||||
NoContent()
|
||||
|
||||
Reference in New Issue
Block a user