# What this PR does Improves OpenAPI schema coverage for internal API: - Fixes/Improves `alert group` and `feature` endpoints - Adds `integration` and `user` endpoints ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/3444 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
8 lines
172 B
Python
8 lines
172 B
Python
from enum import IntEnum
|
|
|
|
|
|
class CloudSyncStatus(IntEnum):
|
|
NOT_SYNCED = 0
|
|
SYNCED_USER_NOT_FOUND = 1
|
|
SYNCED_PHONE_NOT_VERIFIED = 2
|
|
SYNCED_PHONE_VERIFIED = 3
|