-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add API metadata annotations and update notification methods
Added `ApiServiceMetadata` and `ApiEndpointMetadata` annotations to relevant classes and methods. Updated methods to handle system and personal notifications, including new functionalities for deleting and marking notifications as read or unread. Signed-off-by: mesilov <[email protected]>
- Loading branch information
Showing
99 changed files
with
2,258 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,10 @@ Performance improvements 🚀 | |
output: b24 response dto | ||
process: b24 entities, operate with immutable objects | ||
``` | ||
## Documentation | ||
|
||
- [Bitrix24 API documentation - English](https://training.bitrix24.com/rest_help/) | ||
- [Internal documentation](docs/EN/documentation.md) for bitrix24-php-sdk | ||
|
||
## Sponsors | ||
|
||
|
@@ -220,8 +224,4 @@ in this project. | |
|
||
## Need custom Bitrix24 application? | ||
|
||
[email protected] for private consultations or dedicated support | ||
|
||
## Documentation | ||
|
||
[Bitrix24 API documentation - English](https://training.bitrix24.com/rest_help/) | ||
Email to [email protected] for private consultations or dedicated support. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# How to build bitrix24-php-sdk | ||
|
||
## How to rebuild documentation | ||
|
||
Use cli-command | ||
|
||
```shell | ||
make build-documentation | ||
``` | ||
|
||
## How to add new scope | ||
|
||
1. Add new scope in scope enum `src/Core/Credentials/Scope.php`. | ||
2. Add new scope folder in `src/Services/` folder and add services. | ||
3. Add new integration tests in mirror scope folder in `tests/Integration/Services`. | ||
4. Add new scope support in phpunit `phpunit.xml.dist` testsuite list | ||
5. Add new scope support in `Makefile` |
Oops, something went wrong.