Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add need_verification field to contacts #638

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 2 additions & 0 deletions docs/employer_resumes.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"contact": [
{
"verified": true,
"need_verification": true,
"comment": null,
"type": {
"id": "cell",
Expand Down Expand Up @@ -460,6 +461,7 @@ value | string или [object](#value-object) или null | Значение к
preferred | boolean | Является ли данный способ связи предпочитаемым (обязательно указать один контакт как предпочитаемый `"preferred": true`, в случае если preferred не передан, считаем, что передано значение `false`).
comment | string или null | Комментарий к контакту.
verified | boolean или null | Является ли телефон подтвержденным (при указании телефона).
need_verification | boolean или null | Нужно ли подтверждение телефона (при указании телефона).
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Это поле будет показано работодателю?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Да, его вполне можно показать, мы смотрим на него, когда решаем, рисовать ли предупреждение


<a name="value-object"></a>
Объект `value`
Expand Down
3 changes: 2 additions & 1 deletion docs/resumes.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@
},
"preferred":true,
"comment":"Mobile",
"verified":false
"verified":false,
"need_verification":false
DanilKnyazev marked this conversation as resolved.
Show resolved Hide resolved
},
{
"type": {
Expand Down
5 changes: 4 additions & 1 deletion docs_eng/resumes.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ Server returns `403 Forbidden` if authorization is failed.
},
"preferred":true,
"comment":"Mobile",
"verified":false
"verified":false,
"need_verification":false
},
{
"type": {
Expand Down Expand Up @@ -326,6 +327,7 @@ the response will be registered as viewed.
"contact": [
{
"verified": true,
"need_verification": true,
"comment": null,
"type": {
"id": "cell",
Expand Down Expand Up @@ -687,6 +689,7 @@ value | string or [object](#value-object) | Contact value. Phone number: an [obj
preferred | boolean | Is this the preferred method of communication (should mention only one preferred contact as `"preferred": true`, if preferred flag is not sent default value for this parameter is `false`).
comment | string or null | Comment to the contact.
verified | boolean or null | Is the phone number confirmed (when specifying a phone number).
need_verification | boolean or null | Is phone confirmation required (when specifying a phone number).

<a name="value-object"></a>
Object `value`
Expand Down