Merge pull request #13071 from nextcloud/fix/fix-spellcheck

This commit is contained in:
Kate
2025-04-22 18:28:46 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -19,4 +19,4 @@ jobs:
- name: Check spelling
uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
with:
skip: '**.svg, **.js'
skip: '**.svg,**.js'

View File

@@ -156,7 +156,7 @@ Changed APIs
- First request should contains the following headers:
- ``X-NC-Paginate: true`` enables the functionnality
- ``X-NC-Paginate: true`` enables the functionality
- ``X-NC-Paginate-Count: X`` sets the number of results per page (default 100)
- Server will answer with new headers:
@@ -175,7 +175,7 @@ Changed APIs
- It has a new method ``getMimeType()`` to get the new property.
- ``OCP\Files\Storage::needsPartFile`` method was moved to interface ``OCP\Files\Storage\IStorage``.
- The constructor was removed from interface ``OCP\Files\Storage\IStorage`` so that wrappers can use DI in their constructor. If your storage implementation is supposed to be built by calling the constructor, please implement the new interface ``OCP\Files\Storage\IConstructableStorage``.
- ``OCP\IUser::getFirstLogin`` method was added to get first known login of a user. It will return a unix timestamp, or 0 if the user never logged in, or -1 if this data is not known (meaning the first login of this user was from before ugrading to 31).
- ``OCP\IUser::getFirstLogin`` method was added to get first known login of a user. It will return a unix timestamp, or 0 if the user never logged in, or -1 if this data is not known (meaning the first login of this user was from before upgrading to 31).
Deprecated APIs
^^^^^^^^^^^^^^^