Update CHANGELOG.md

This commit is contained in:
Innokentii Konstantinov 2023-07-05 14:30:51 +08:00
parent 223f840172
commit fe5b6516f0
3 changed files with 1 additions and 5 deletions

View file

@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
## v1.3.4 (2023-06-29)
### Added

View file

@ -4,9 +4,6 @@ from apps.phone_notifications.phone_provider import ProviderPhoneCall
class ZvonokCallStatuses:
"""
https://zvonok.com/ru-ru/guide/guide_statuses/
"""
ATTEMPTS_EXC = 10
COMPL_FINISHED = 20

View file

@ -18,7 +18,6 @@ logger = logging.getLogger(__name__)
class ZvonokPhoneProvider(PhoneProvider):
"""
ZvonokPhoneProvider is an implementation of phone provider which supports only voice calls (zvonok.com).
API docs: https://api-docs.zvonok.com/ . Call status description: https://zvonok.com/ru-ru/guide/guide_statuses/
"""
def make_notification_call(self, number: str, message: str) -> ZvonokPhoneCall: