Skip to content

Commit 42458cb

Browse files
committed
Revert "feat(OCM-invites): Bumpversion and rename migration"
This reverts commit ea3c60f. Instead we just bump the version of the app. Signed-off-by: Micke Nordin <kano@sunet.se>
1 parent ea3c60f commit 42458cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/cloud_federation_api/lib/Controller/RequestHandlerController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public function inviteAccepted(string $recipientProvider, string $token, string
288288
$status = Http::STATUS_CONFLICT;
289289
return new JSONResponse($response, $status);
290290
}
291-
if ($data['expiresAt'] < $updated) {
291+
if($data['expiresAt'] < $updated) {
292292
$response = ['message' => 'Invitation expired', 'error' => true];
293293
$status = Http::STATUS_BAD_REQUEST;
294294
return new JSONResponse($response, $status);

apps/cloud_federation_api/lib/Migration/Version1016Date202502262004.php renamed to apps/cloud_federation_api/lib/Migration/Version1015Date202502262004.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use OCP\Migration\IOutput;
1616
use OCP\Migration\SimpleMigrationStep;
1717

18-
class Version1016Date202502262004 extends SimpleMigrationStep
18+
class Version1015Date202502262004 extends SimpleMigrationStep
1919
{
2020

2121
/**

0 commit comments

Comments
 (0)