Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/update-nextcloud-ocp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: Update nextcloud/ocp
on:
workflow_dispatch:
schedule:
- cron: "5 2 * * 0"
- cron: "5 2 * * *"

permissions:
contents: read
Expand Down
8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions lib/FakeUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ public function getQuota() {
throw new \RuntimeException('Not implemented');
}

public function getQuotaBytes(): int|float {
throw new \RuntimeException('Not implemented');
}

public function setQuota($quota) {
throw new \RuntimeException('Not implemented');
}
Expand Down