Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unreachable UserStatus#clearStatus route #38099

Merged
merged 1 commit into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions apps/user_status/lib/Controller/UserStatusController.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,16 +164,6 @@ public function setCustomMessage(?string $statusIcon,
}
}

/**
* @NoAdminRequired
*
* @return DataResponse
*/
public function clearStatus(): DataResponse {
$this->service->clearStatus($this->userId);
return new DataResponse([]);
}

/**
* @NoAdminRequired
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,15 +326,6 @@ public function setCustomMessageDataProvider(): array {
];
}

public function testClearStatus(): void {
$this->service->expects($this->once())
->method('clearStatus')
->with('john.doe');

$response = $this->controller->clearStatus();
$this->assertEquals([], $response->getData());
}

public function testClearMessage(): void {
$this->service->expects($this->once())
->method('clearMessage')
Expand Down